1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-21 12:51:52 +02:00

pull table class from docs again

This commit is contained in:
Mark Otto
2011-08-25 23:18:15 -07:00
parent 8c2df3ac3a
commit c715584428

View File

@@ -503,7 +503,7 @@
</tbody> </tbody>
</table> </table>
<pre class="prettyprint linenums"> <pre class="prettyprint linenums">
&lt;table class="common-table"&gt; &lt;table&gt;
... ...
&lt;/table&gt;</pre> &lt;/table&gt;</pre>
<h3>Example: Zebra-striped</h3> <h3>Example: Zebra-striped</h3>
@@ -540,7 +540,7 @@
</table> </table>
<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="common-table zebra-striped"&gt; &lt;table class="zebra-striped"&gt;
... ...
&lt;/table&gt;</pre> &lt;/table&gt;</pre>
<h3>Example: Zebra-striped w/ TableSorter.js</h3> <h3>Example: Zebra-striped w/ TableSorter.js</h3>
@@ -582,7 +582,7 @@
$("table#sortTableExample").tablesorter({ sortList: [[1,0]] }); $("table#sortTableExample").tablesorter({ sortList: [[1,0]] });
}); });
&lt;/script&gt; &lt;/script&gt;
&lt;table class="common-table zebra-striped"&gt; &lt;table class="zebra-striped"&gt;
... ...
&lt;/table&gt;</pre> &lt;/table&gt;</pre>
</div> </div>