Welcome ðŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

2 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


text-transform is a CSS property used to change the display of text by transforming it in different ways. It allows you to change the capitalization, make all uppercase, all lowercase, or capitalize the first letter of each word.

Here are the possible values for text-transform:


How to use


Example

HTML

<h1> Hello </h1>






CSS

h1 {
  text-transform: uppercase;
}






Result:

Hello


Experience


Hello



Read more
On This Page