How do you capitalize text using CSS?« View all CSS articles
July 11, 2006
Related Content
• How do you change text to all uppercase using CSS?
• How do you change text to lowercase using CSS?
Use the text-transform property to capitalize the first letter of each word using CSS.
In this example we will capitalize the first letter of each word for the following sentence:
CSS is fun to learn.
.caps {
text-transform: capitalize;
}
<p class="initcaps">
CSS is fun to learn.
</p>
The result is:
Css Is Fun To Learn.
|