aboutsummaryrefslogtreecommitdiff
path: root/docs/base-css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-08-19 13:12:19 -0700
committerMark Otto <[email protected]>2012-08-19 13:12:43 -0700
commit887f11d47f052a0dd123f76a6ac39a955c2429d4 (patch)
treef0fa2954109fb29a0aa613661c2b6f13ffa7beb8 /docs/base-css.html
parent47cf3cc62f249052f67b1390bdeb433684b6da0b (diff)
downloadbootstrap-887f11d47f052a0dd123f76a6ac39a955c2429d4.tar.xz
bootstrap-887f11d47f052a0dd123f76a6ac39a955c2429d4.zip
fixes #4455: improve small styles and add to docs
Diffstat (limited to 'docs/base-css.html')
-rw-r--r--docs/base-css.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/base-css.html b/docs/base-css.html
index 2be40cd2c..df5df2402 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -141,7 +141,18 @@
<h2>Emphasis</h2>
- <p>Make use of HTML's default emphasis tags, <code>&lt;strong&gt;</code> and <code>&lt;em&gt;</code>.</p>
+ <p>Make use of HTML's default emphasis tags with lightweight styles.</p>
+
+ <h3><code>&lt;small&gt;</code></h3>
+ <p>For de-emphasizing inline or blocks of text, <small>use the small tag.</small></p>
+ <div class="bs-docs-example">
+ <p><small>This line of text is meant to be treated as fine print.</small></p>
+ </div>
+<pre class="prettyprint">
+&lt;p&gt;
+ &lt;small&gt;This line of text is meant to be treated as fine print.&lt;/small&gt;
+&lt;/p&gt;
+</pre>
<h3><code>&lt;strong&gt;</code></h3>
<p>For emphasizing a snippet of text with <strong>important</strong></p>