Open In App

How to change the cases of text in paragraph using CSS?

The approach of this article is to how to change cases of text in a paragraph by using the CSS  text-transform Property. It is s used to control the capitalization of the text. It mainly changes the text into upper case and lowercase format.

Syntax: 



text-transform: none | capitalize | uppercase | lowercase | initial | inherit; 

Example:






<!DOCTYPE html>
<html>
 
<head>
    <style>
        h1 {
            color: green;
        }
         
        p.gfg {
            text-transform: capitalize;
        }
        p.GFG
        {
            text-transform:uppercase;
        }
        p.sudo
        {
            text-transform:lowercase;
        }
         
    </style>
</head>
 
<body>
    <center>
        <h1>GeeksForGeeks</h1>
        <h2>
        How to change cases of text
in paragraph using CSS?
</h2>
         
        <p class="gfg">capitalize</p>
        <p class="sudo">
        lower case letter
        </p> 
        <p class="GFG">
        uppercase letter</p>
</body>
 
</html>

Output:

Supported Browsers are listed below:


Article Tags :