Created
September 1, 2014 13:38
-
-
Save fisherds/88591ad7d9ef16b30a0c to your computer and use it in GitHub Desktop.
Code snapshot from http://getbootstrap.com/css/#tables taken 9/2014
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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