<p>Make use of HTML's default emphasis tags with lightweight styles.</p>
<p>Make use of HTML's default emphasis tags with lightweight styles.</p>
<h3><code><small></code></h3>
<h3>Small text</h3>
<p>For de-emphasizing inline or blocks of text, <small>use the small tag.</small></p>
<p>For de-emphasizing inline or blocks of text, <small>use the small tag.</small></p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
...
@@ -225,8 +225,8 @@ title: CSS
...
@@ -225,8 +225,8 @@ title: CSS
<h2id="abbreviations">Abbreviations</h2>
<h2id="abbreviations">Abbreviations</h2>
<p>Stylized implementation of HTML's <code><abbr></code> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a <code>title</code> attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.</p>
<p>Stylized implementation of HTML's <code><abbr></code> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a <code>title</code> attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.</p>
<h3><code><abbr></code></h3>
<h3>Basic abbreviation</h3>
<p>For expanded text on long hover of an abbreviation, include the <code>title</code> attribute.</p>
<p>For expanded text on long hover of an abbreviation, include the <code>title</code> attribute with the <code><abbr></code> element.</p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<p>An abbreviation of the word attribute is <abbrtitle="attribute">attr</abbr>.</p>
<p>An abbreviation of the word attribute is <abbrtitle="attribute">attr</abbr>.</p>
<p>Add <code>.initialism</code> to an abbreviation for a slightly smaller font-size.</p>
<p>Add <code>.initialism</code> to an abbreviation for a slightly smaller font-size.</p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<p><abbrtitle="HyperText Markup Language"class="initialism">HTML</abbr> is the best thing since sliced bread.</p>
<p><abbrtitle="HyperText Markup Language"class="initialism">HTML</abbr> is the best thing since sliced bread.</p>
...
@@ -246,10 +246,7 @@ title: CSS
...
@@ -246,10 +246,7 @@ title: CSS
<!-- Addresses -->
<!-- Addresses -->
<h2id="addresses">Addresses</h2>
<h2id="addresses">Addresses</h2>
<p>Present contact information for the nearest ancestor or the entire body of work.</p>
<p>Present contact information for the nearest ancestor or the entire body of work. Preserve formatting by ending all lines with <code><br></code>.</p>
<h3><code><address></code></h3>
<p>Preserve formatting by ending all lines with <code><br></code>.</p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<address>
<address>
<strong>Twitter, Inc.</strong><br>
<strong>Twitter, Inc.</strong><br>
...
@@ -656,8 +653,8 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -656,8 +653,8 @@ For example, <code><section></code> should be wrapped as inline.
<h2>Optional classes</h2>
<h2>Optional classes</h2>
<p>Add any of the following classes to the <code>.table</code> base class.</p>
<p>Add any of the following classes to the <code>.table</code> base class.</p>
<h3><code>.table-striped</code></h3>
<h3>Striped</h3>
<p>Adds zebra-striping to any table row within the <code><tbody></code> via the <code>:nth-child</code> CSS selector (not available in IE8).</p>
<p>Use <code>.table-striped</code> to add zebra-striping to any table row within the <code><tbody></code> via the <code>:nth-child</code> CSS selector (not available in IE8).</p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<tableclass="table table-striped">
<tableclass="table table-striped">
<thead>
<thead>
...
@@ -696,8 +693,8 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -696,8 +693,8 @@ For example, <code><section></code> should be wrapped as inline.
</table>
</table>
{% endhighlight %}
{% endhighlight %}
<h3><code>.table-bordered</code></h3>
<h3>Bordered</h3>
<p>Add borders and rounded corners to the table.</p>
<p>Add <code>.table-bordered</code> for borders and rounded corners.</p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<tableclass="table table-bordered">
<tableclass="table table-bordered">
<thead>
<thead>
...
@@ -740,8 +737,8 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -740,8 +737,8 @@ For example, <code><section></code> should be wrapped as inline.
</table>
</table>
{% endhighlight %}
{% endhighlight %}
<h3><code>.table-hover</code></h3>
<h3>Hover rows</h3>
<p>Enable a hover state on table rows within a <code><tbody></code>.</p>
<p>Add <code>.table-hover</code> to enable a hover state on table rows within a <code><tbody></code>.</p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<tableclass="table table-hover">
<tableclass="table table-hover">
<thead>
<thead>
...
@@ -780,8 +777,8 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -780,8 +777,8 @@ For example, <code><section></code> should be wrapped as inline.
{% endhighlight %}
{% endhighlight %}
<h3><code>.table-condensed</code></h3>
<h3>Condensed</h3>
<p>Makes tables more compact by cutting cell padding in half.</p>
<p>Add <code>.table-condensed</code> to make tables more compact by cutting cell padding in half.</p>
<divclass="bs-docs-example">
<divclass="bs-docs-example">
<tableclass="table table-condensed">
<tableclass="table table-condensed">
<thead>
<thead>
...
@@ -1753,52 +1750,37 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -1753,52 +1750,37 @@ For example, <code><section></code> should be wrapped as inline.
<h2>Default buttons</h2>
<h2>Default buttons</h2>
<p>Button styles can be applied to anything with the <code>.btn</code> class applied. However, typically you'll want to apply these to only <code><a></code> and <code><button></code> elements for the best rendering.</p>
<p>Button styles can be applied to anything with the <code>.btn</code> class applied. However, typically you'll want to apply these to only <code><a></code> and <code><button></code> elements for the best rendering.</p>
<td>Deemphasize a button by making it look like a link while maintaining button behavior</td>
</tr>
</tbody>
</table>
<h4>Cross browser compatibility</h4>
<h4>Cross browser compatibility</h4>
<p>IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9 jankifies disabled <code>button</code> elements, rendering text gray with a nasty text-shadow that we cannot fix.</p>
<p>IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9 jankifies disabled <code>button</code> elements, rendering text gray with a nasty text-shadow that we cannot fix.</p>