Tables

# Intro

Tables are classless by default.

EpisodeTitleRelease Date
IVA New HopeMay 25, 1977
VThe Empire Strikes BackMay 21, 1980
VIReturn of the JediMay 25, 1983
<table>
	<thead>
		<tr>
			<th>Episode</th>
			<th>Title</th>
			<th>Release Date</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>IV</td>
			<td>A New Hope</td>
			<td>May 25, 1977</td>
		</tr>
		<tr>
			<td>V</td>
			<td>The Empire Strikes Back</td>
			<td>May 21, 1980</td>
		</tr>
		<tr>
			<td>VI</td>
			<td>Return of the Jedi</td>
			<td>May 25, 1983</td>
		</tr>
	</tbody>
</table>

# Striped

Use the -striped modifier to add zebra-striping to rows.

EpisodeTitleRelease Date
IVA New HopeMay 25, 1977
VThe Empire Strikes BackMay 21, 1980
VIReturn of the JediMay 25, 1983
<table class="-striped">
	<thead>
		...
	</thead>
	<tbody>
		...
	</tbody>
</table>

# Hover

Use the -hover modifier to add a hover style to rows.

EpisodeTitleRelease Date
IVA New HopeMay 25, 1977
VThe Empire Strikes BackMay 21, 1980
VIReturn of the JediMay 25, 1983
<table class="-hover">
	<thead>
		...
	</thead>
	<tbody>
		...
	</tbody>
</table>

# Bordered

Use the -bordered modifier to add borders on the table and cells.

EpisodeTitleRelease Date
IVA New HopeMay 25, 1977
VThe Empire Strikes BackMay 21, 1980
VIReturn of the JediMay 25, 1983
<table class="-bordered">
	<thead>
		...
	</thead>
	<tbody>
		...
</table>

# Colors

Use the -primary, -success, -warning, -danger, -dark, and -light modifiers to style any table child. The -dark modifier can be added to the table.

ClassHeadingHeading
PrimaryCellCell
SuccessCellCell
WarningCellCell
DangerCellCell
LightCellCell
<table class="-hover">
	<thead>
		<tr class="-dark">
			<th>Class</th>
			<th>Heading</th>
			<th>Heading</th>
		</tr>
	</thead>
	<tbody>
		<tr class="-primary">
			<td>Primary</td>
			<td>Cell</td>
			<td>Cell</td>
		</tr>
	</tbody>
</table>
EpisodeTitleRelease Date
IVA New HopeMay 25, 1977
VThe Empire Strikes BackMay 21, 1980
VIReturn of the JediMay 25, 1983
<table class="-dark -striped -hover">
	<thead>
		...
	</thead>
	<tbody>
		...
	</tbody>
</table>

# Scrollable

To make a table responsive and to make it scrollable on overflow, wrap the table in a table-scrollable container.

EpisodeTitleDurationRelease DateDirectorProducer
IVA New Hope121 minutesMay 25, 1977George LucasGary Kurtz
VThe Empire Strikes Back124 minutesMay 21, 1980Irvin KershnerGary Kurtz
VIReturn of the Jedi132 minutesMay 25, 1983Richard MarquandHoward Kazanjian
<div class="table-scrollable">
	<table>
		<thead>
			...
		</thead>
		<tbody>
			...
		</tbody>
	</table>
</div>