Commit 5abb4b32 authored by Mark Otto's avatar Mark Otto

update tables docs after merging in the condensed styles

parent b1ce89c2
...@@ -628,10 +628,10 @@ ...@@ -628,10 +628,10 @@
<p><strong>Note:</strong> Zebra-striping is a progressive enhancement not available for older browsers like IE8 and below.</p> <p><strong>Note:</strong> Zebra-striping is a progressive enhancement not available for older browsers like IE8 and below.</p>
<pre class="prettyprint linenums"> <pre class="prettyprint linenums">
&lt;table class="striped-table"&gt; &lt;table class="striped-table"&gt;
... ...
&lt;/table&gt;</pre> &lt;/table&gt;</pre>
<h3>3. Condensed table</h3> <h3>3. Condensed table</h3>
<p>Make your tables smaller&mdash;just add the <code>.condensed-table</code> class.</p> <p>Make your tables more compact by adding the <code>.condensed-table</code> class to cut table cell padding in half (from 10px to 5px).</p>
<table class="condensed-table"> <table class="condensed-table">
<thead> <thead>
<tr> <tr>
...@@ -664,7 +664,7 @@ ...@@ -664,7 +664,7 @@
</table> </table>
<pre class="prettyprint linenums"> <pre class="prettyprint linenums">
&lt;table class="condensed-table"&gt; &lt;table class="condensed-table"&gt;
... ...
&lt;/table&gt;</pre> &lt;/table&gt;</pre>
<h3>4. Striped table w/ TableSorter.js</h3> <h3>4. Striped table w/ TableSorter.js</h3>
<p>Taking the previous example, we improve the usefulness of our tables by providing sorting functionality via <a href="http://jquery.com">jQuery</a> and the <a href="http://tablesorter.com/docs/">Tablesorter</a> plugin. <strong>Click any column’s header to change the sort.</strong></p> <p>Taking the previous example, we improve the usefulness of our tables by providing sorting functionality via <a href="http://jquery.com">jQuery</a> and the <a href="http://tablesorter.com/docs/">Tablesorter</a> plugin. <strong>Click any column’s header to change the sort.</strong></p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment