Responsive Table

Example making a table scrollable on small screens.

Preview

Code

<div style="overflow-x:auto;">
<table border="1">
<tr>
<th>Name</th>
<th>Country</th>
<th>Age</th>
</tr>
<tr>
<td>Alex</td>
<td>USA</td>
<td>31</td>
</tr>
</table>
</div>

More HTML Tables Examples (11)