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
| <dl class="dl-horizontal"> | |
| <dt>Description lists</dt> | |
| <dd>A description list is perfect for defining terms.</dd> | |
| <dt>Euismod</dt> | |
| <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd> | |
| <dd>Donec id elit non mi porta gravida at eget metus.</dd> | |
| <dt>Malesuada porta</dt> | |
| <dd>Etiam porta sem malesuada magna mollis euismod.</dd> | |
| <dt>Felis euismod semper eget lacinia</dt> | |
| <dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd> |
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"> | |
| <thead> | |
| <tr> | |
| <th>#</th> | |
| <th>First Name</th> | |
| <th>Last Name</th> | |
| <th>Username</th> | |
| </tr> | |
| </thead> | |
| <tbody> |
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"> | |
| ... | |
| </table> |
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-bordered"> | |
| ... | |
| </table> |
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-hover"> | |
| ... | |
| </table> |
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-condensed"> | |
| ... | |
| </table> |
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
| <!-- On rows --> | |
| <tr class="active">...</tr> | |
| <tr class="success">...</tr> | |
| <tr class="warning">...</tr> | |
| <tr class="danger">...</tr> | |
| <!-- On cells (`td` or `th`) --> | |
| <tr> | |
| <td class="active">...</td> | |
| <td class="success">...</td> |
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
| <div class="table-responsive"> | |
| <table class="table"> | |
| ... | |
| </table> | |
| </div> |