University of Illinois System
Last item for navigation

Tables

Default Table: bordered, striped

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat


<table class="table table-bordered table-striped">
	<thead>
		<tr>
			<th scope="col">#</th>
			<th scope="col">First</th>
			<th scope="col">Last</th>
			<th scope="col">Handle</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<th scope="row">1</th>
			<td>Mark</td>
			<td>Otto</td>
			<td>@mdo</td>
		</tr>
		<tr>
			<th scope="row">2</th>
			<td>Jacob</td>
			<td>Thornton</td>
			<td>@fat</td>
		</tr>
	</tbody>
</table>

Basic Table: no blue header, bordered, striped

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat

<table class="table table-bordered table-striped">
	<tbody>
		<tr>
			<th scope="col">#</th>
			<th scope="col">First</th>
			<th scope="col">Last</th>
			<th scope="col">Handle</th>
		</tr>
		<tr>
			<td>1</td>
			<td>Mark</td>
			<td>Otto</td>
			<td>@mdo</td>
		</tr>
		<tr>
			<td>2</td>
			<td>Jacob</td>
			<td>Thornton</td>
			<td>@fat</td>
		</tr>
	</tbody>
</table>


Striped Rows

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat


<table class="table table-striped">
...
</table>


Hover Rows

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat


<table class="table table-hover">
...
</table>


Bordered Tables

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat


<table class="table-bordered">
...
</table>


Small Tables

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat


<table class="table table-sm">
...
</table>


Auto-width Tables

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat


<table class="table w-auto">
...
</table>