<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
-<p class="text-justify">Justified text.</p>
+<p class="text-nowrap">No wrap text.</p>
{% endhighlight %}
+ <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>
+ </div>
+ {% highlight html %}
+ <p class="text-lowercase">Lowercase text.</p>
+ <p class="text-uppercase">Uppercase text.</p>
+ <p class="text-capitalize">Capitalize text.</p>
+ {% endhighlight %}
<!-- Abbreviations -->
<h2 id="type-abbreviations">Abbreviations</h2>
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
+.text-nowrap { white-space: nowrap; }
+ // Transformation
+ .text-lowercase { text-transform: lowercase; }
+ .text-uppercase { text-transform: uppercase; }
+ .text-capitalize { text-transform: capitalize; }
+
// Contextual colors
.text-muted {
color: @text-muted;