For the Default table, the following classes are available to customize the table:
A responsive table reorders itself on mobile so that it’s easier to view. This is best for simple tables.
For complex tables, it’s best to use a scrollable table. This keeps the information in its original format on mobile and uses a scrolling container.
A caption is required for accessibility but doesn’t need to render on the front end.
<table class="stack">
<thead>
<tr>
<td></td>
<th scope="col">Column 1</th>
<th scope="col">Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Row Header</th>
<td data-title="Column 1">Body</td>
<td data-title="Column 2">Body</td>
</tr>
<tr>
<th scope="row">Row Header</th>
<td data-title="Column 1">Body</td>
<td data-title="Column 2">Body</td>
</tr>
<tr>
<th scope="row">Row Header</th>
<td data-title="Column 1">Body</td>
<td data-title="Column 2">Body</td>
</tr>
</tbody>
</table>