Table Layout
Table Layout
- Utilities for controlling the table layout algorithm.
table-auto
table-fixed
Example 1
<table class="table-auto">
<thead>
<tr>
<th>Song</th>
<th>Artist</th>
<th>Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>The Sliding Mr. Bones (Next Stop, Pottersville)</td>
<td>Malcolm Lockyer</td>
<td>1961</td>
</tr>
<tr>
<td>Witchy Woman</td>
<td>The Eagles</td>
<td>1972</td>
</tr>
</tbody>
</table>
Table Caption
- Utilities for controlling the alignment of a caption element inside of a table.
<table>
<caption class="caption-bottom">
Table 3.1: Student Details
</caption>
<thead>
</thead>
</table>