CSS Text Transformation

CSS Text Transformation lets you change text case and capitalization using the text-transform property. Convert text to uppercase, lowercase, capitalize the first letter, or toggle case styles. Control text appearance precisely with CSS Text Transformation.



Uppercase Transformation
Try yourself
        
            p {
  text-transform: uppercase;
}
        
    

Lowercase Transformation
Try yourself
        
            p {
  text-transform: lowercase;
}
        
    

Capitalize Transformation
Try yourself
        
            p {
  text-transform: capitalize;
}