Skip to main content

Capitalize Letters of Text

Option 1 - Capitalize First Letters of each word in a List

Note: use the capitalize class with either ol or ul to make the first letter of each word of you list have a capital first letter.

<ol class="capitalize">
<li>**capitalized text goes here**</li>
<li>**capitalized text goes here**</li>
</ol>

<ul class="capitalize">
<li>**capitalized text goes here**</li>
<li>**capitalized text goes here**</li>
</ul>

opt1-banner

Option 2 - Capitalize First Letters of each word in a Text Element

Note: use the capitalize class on any text element to make the first letter of each word have a capital first letter.

<h2 class="capitalize">Lorem ipsum dolor sit amet</h2>

opt1-banner

Option 3 - Capitalize All Letters of Text Element

Note: use the uppercase class on any text element to make al the letters uppercase.

<h2 class="uppercase">Lorem ipsum dolor sit amet</h2>

opt1-banner