Hello Cody,
Put a container around the table.
Set the container's style to this:
overflow-x: auto; white-space: nowrap;
This should prevent text in columns (all columns) of breaking to a new line and add a scroll bar at the bottom of the div if the table don't fit the screen.
It is possible to select only some of the columns to apply the white-space: nowrap, but it's a little more tricky... :)
Cheers,
Eduardo Jauch