Skip to content

Instantly share code, notes, and snippets.

@fisherds
Created September 1, 2014 13:38
Show Gist options
  • Select an option

  • Save fisherds/88591ad7d9ef16b30a0c to your computer and use it in GitHub Desktop.

Select an option

Save fisherds/88591ad7d9ef16b30a0c to your computer and use it in GitHub Desktop.
Code snapshot from http://getbootstrap.com/css/#tables taken 9/2014
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<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>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment