CSS Tables: Responsive Table
<pre><code><div style="overflow-x:auto;">
<table>
... table content ...
</table>
</div></code></pre> A responsive table will display a horizontal scroll bar if the screen is too small to display the full content.
Add a container element (like <div>) with overflow-x:auto around the <table> element to make it responsive.
Semantic portal