aboutsummaryrefslogtreecommitdiff
path: root/docs/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/index.html')
-rw-r--r--docs/index.html36
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>
...
&lt;/table&gt;</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">
+&lt;table class="bordered-table"&gt;
+ ...
+&lt;/table&gt;</pre>
<h3>Example: Zebra-striped</h3>
<p>Get a little fancy with your tables by adding zebra-striping&mdash;just add the <code>.zebra-striped</code> class.</p>
<table class="zebra-striped">