Overflow
Explicit overflow handling for content that may exceed its container.
Use .overflow-auto when content may overflow its container, especially tables and code-like regions.
| Name | Role |
|---|---|
| Alice Johnson | Admin |
<div class="overflow-auto">
<table class="table">
<caption>Team members</caption>
<thead>
<tr>
<th>Name</th>
<th>Role</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alice Johnson</td>
<td>Admin</td>
</tr>
</tbody>
</table>
</div>
CSS
.overflow-auto {
overflow: auto;
}