CSS Tutorial
Menu
CSS Advanced
Menu
CSS Responsive
Menu
CSS Grid
Menu
CSS Text Transformation
The text-transform property specifies the uppercase and lowercase letters in a text.
It can be used change everything into uppercase or lowercase letters, or capitalize the first letter of each word:
HTML
This text is transformed to uppercase.
This text is transformed to lowercase.
This text is capitalized.
CSS
div {
border: 1px solid gray;
padding: 8px;
}
h1 {
text-align: center;
text-transform: uppercase;
color: #4CAF50;
}
p {
text-indent: 50px;
text-align: justify;
letter-spacing: 3px;
}
a {
text-decoration: none;
color: #008CBA;
}
Output
