2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00

Follow-up to #13671; improves consistency of text with previous examples

Also fixes a small indentation error.
This commit is contained in:
Heinrich Fenkart
2014-06-11 08:33:30 +02:00
parent f09d6b7a98
commit 03b556bbc5
+6 -6
View File
@@ -207,14 +207,14 @@ You can use the mark tag to <mark>highlight</mark> text.
<h2 id="type-transformation">Transformation classes</h2>
<p>Transform text in components with text capitalization classes.</p>
<div class="bs-example">
<p class="text-lowercase">Lowercase text.</p>
<p class="text-uppercase">Uppercase text.</p>
<p class="text-capitalize">Capitalize text.</p>
<p class="text-lowercase">Lowercased text.</p>
<p class="text-uppercase">Uppercased text.</p>
<p class="text-capitalize">Capitalized text.</p>
</div>
{% highlight html %}
<p class="text-lowercase">Lowercase text.</p>
<p class="text-uppercase">Uppercase text.</p>
<p class="text-capitalize">Capitalize text.</p>
<p class="text-lowercase">Lowercased text.</p>
<p class="text-uppercase">Uppercased text.</p>
<p class="text-capitalize">Capitalized text.</p>
{% endhighlight %}
<!-- Abbreviations -->