Foundation’s 尝试一下 » Use CSS to make tables support responsive design: add to the table
<table>
The element style is gray zebra stripes and contains four borders: 8.4.1. Example ¶
<table>
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
</tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr>
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</tbody>
</table>
Responsive form ¶
<div>
Element, the style is
overflow-x:hidden
: 8.4.2. Example ¶
<div style="overflow-x:hidden">
<table>
...
</table>
</div>