CSS Responsive Table
A responsive table will display a horizontal scroll bar if the screen is too small to display the full content:
<div style="overflow-x:auto;">
<table>
... table content ...
</table>
</div>
note
In OS X Lion (on Mac), scrollbars are hidden by default and only shown when being used (even though overflow:scroll
is set).