2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

fixes #4455: improve small styles and add to docs

This commit is contained in:
Mark Otto
2012-08-19 13:12:19 -07:00
parent 47cf3cc62f
commit 887f11d47f
4 changed files with 64 additions and 50 deletions
+12 -1
View File
@@ -75,7 +75,18 @@
{{! Emphasis }}
<h2>{{_i}}Emphasis{{/i}}</h2>
<p>{{_i}}Make use of HTML's default emphasis tags, <code>&lt;strong&gt;</code> and <code>&lt;em&gt;</code>.{{/i}}</p>
<p>{{_i}}Make use of HTML's default emphasis tags with lightweight styles.{{/i}}</p>
<h3><code>&lt;small&gt;</code></h3>
<p>{{_i}}For de-emphasizing inline or blocks of text, <small>use the small tag.</small>{{/i}}</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>{{_i}}For emphasizing a snippet of text with <strong>important</strong>{{/i}}</p>