diff --git a/docs/base-css.html b/docs/base-css.html index 6485d76a22..92117b80ef 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -358,7 +358,7 @@
<div> <h1>Heading</h1> - <p>Something right here...</p> + <p>Something right here…</p> </div>
Note: Be sure to keep code within <pre>
tags as close to the left as possible; it will render all tabs.
Using the google-code-prettify library, you're blocks of code get a slightly different visual style and automatic syntax highlighting. You can also add an additional class to add line numbers.
<div> <h1>Heading</h1> - <p>Something right here...</p> + <p>Something right here…</p> </div>
<div> <h1>Heading</h1> - <p>Something right here...</p> + <p>Something right here…</p> </div>
Download google-code-prettify and view the readme for how to use.
@@ -521,14 +521,14 @@ <table> <thead> <tr> - <th>...</th> - <th>...</th> + <th>…</th> + <th>…</th> </tr> </thead> <tbody> <tr> - <td>...</td> - <td>...</td> + <td>…</td> + <td>…</td> </tr> </tbody> </table> @@ -591,7 +591,7 @@Tables are automatically styled with only a few borders to ensure readability and maintain structure. With 2.0, the .table
class is required.
<table class="table"> - ... + … </table>
Note: Sprited tables use the :nth-child
CSS selector and is not available in IE7-IE8.
<table class="table table-striped"> - ... + … </table>
Add borders around the entire table and rounded corners for aesthetic purposes.
<table class="table table-bordered"> - ... + … </table>
Make your tables more compact by adding the .table-condensed
class to cut table cell padding in half (from 10px to 5px).
Make your tables more compact by adding the .table-condensed
class to cut table cell padding in half (from 8px to 4px).
<table class="table table-condensed"> - ... + … </table>
Include the jQuery Tablesorter plugin and automaically get clear styles for sorted columns.
+Include the jQuery Tablesorter plugin and automatically get clear styles for sorted columns.
<script src="jquery.tablesorter.js"></script> <script > @@ -782,7 +782,7 @@ }); </script> <table class="table table-striped"> - ... + … </table>
With v2.0, we have lighter and smarter defaults for form styles. No extra markup, just form controls.
- + +