diff options
| author | Mark Otto <[email protected]> | 2011-10-08 00:14:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-10-08 00:14:38 -0700 |
| commit | 7b665affd77c647111b089e4a178b09525a67863 (patch) | |
| tree | f6c3528b12ecef125deb650670afb9986700cafa /docs | |
| parent | e025de9a83a74822c8841142971f14eae2729fc1 (diff) | |
| download | bootstrap-7b665affd77c647111b089e4a178b09525a67863.tar.xz bootstrap-7b665affd77c647111b089e4a178b09525a67863.zip | |
fix problems with scope in tables when using th in tbody
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/index.html b/docs/index.html index 4f895e081..ea80e965c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -875,6 +875,42 @@ <table> ... </table></pre> + <h3>Example: Bordered table</h3> + <p>Make your tables look just a wee bit sleeker by rounding their corners and adding borders on all sides.</p> + <table class="bordered-table"> + <thead> + <tr> + <th>#</th> + <th>First Name</th> + <th>Last Name</th> + <th>Language</th> + </tr> + </thead> + <tbody> + <tr> + <td>1</td> + <td>Some</td> + <td>One</td> + <td>English</td> + </tr> + <tr> + <td>2</td> + <td>Joe</td> + <td>Sixpack</td> + <td>English</td> + </tr> + <tr> + <td>3</td> + <td>Stu</td> + <td>Dent</td> + <td>Code</td> + </tr> + </tbody> + </table> +<pre class="prettyprint linenums"> +<table class="bordered-table"> + ... +</table></pre> <h3>Example: Zebra-striped</h3> <p>Get a little fancy with your tables by adding zebra-striping—just add the <code>.zebra-striped</code> class.</p> <table class="zebra-striped"> |
