diff options
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"> |
