Bootstrap Text Transformation Classes

Notes:

Bootstrap Text Transform Classes:

text-lowercase : converts all upper case characters to lower case
<p class="text-lowercase"> HTML is a structural language. </p>

text-uppercase : converts all lower case characters to upper case
<p class="text-uppercase"> HTML is a structural language. </p>

text-capitalize : converts first character of all words to upper case
<p class="text-capitalize"> HTML is a structural language. </p>

CSS font-variant : converts all lower case characters to smaller upper case characters
<p style="font-variant:small-caps;"> HTML is a structural language. </p>

Interview Questions: