Open In App

CSS text-indent Property

The text-indent property in CSS is used to define the indentation of the first line in each block of text. It also take negative values. It means if the value is negative then the first line will be indented to the left. 

Syntax:

text-indent: length|initial|inherit; 

Property values:

Example: In this example, we are using text-indent: length; property.

<!DOCTYPE html>
<html>

<head>
    <title>
        CSS text-indent Property
    </title>

    <!-- CSS text-indent property -->
    <style>
        .sudo {
            text-indent: 70px;
        }

        .geeks {
            text-indent: -5em;
        }

        .gfg {
            text-indent: 40%;
        }
    </style>
</head>

<body>
    <h1 style="">GeeksforGeeks</h1>
    <h2> text-indent Property</h2>

    <h2>text-indent: 70px:</h2>
    <div class="sudo">
        Prepare for the Recruitment drive of product
        based companies like Microsoft, Amazon, Adobe
        etc with a free online placement preparation
        course. The course focuses on various MCQ's
        & Coding question likely to be asked in the
        interviews & make your upcoming placement
        season efficient and successful.
    </div>

    <h2>text-indent: -5em:</h2>
    <div class="geeks">
        Prepare for the Recruitment drive of product
        based companies like Microsoft, Amazon, Adobe
        etc with a free online placement preparation
        course. The course focuses on various MCQ's
        & Coding question likely to be asked in the
        interviews & make your upcoming placement
        season efficient and successful.
    </div>

    <h2>text-indent: 40%:</h2>
    <div class="gfg">
        Prepare for the Recruitment drive of product
        based companies like Microsoft, Amazon, Adobe
        etc with a free online placement preparation
        course. The course focuses on various MCQ's
        & Coding question likely to be asked in the
        interviews & make your upcoming placement
        season efficient and successful.
    </div>

</body>

</html>

Output: 

Example: In this example, we are using text-indent: %; property.

<!DOCTYPE html>
<html>

<head>
    <title>
        CSS text-indent Property
    </title>

    <!-- CSS text-indent property -->
    <style>
        .gfg {
            text-indent: 40%;
        }
    </style>
</head>

<body>
    <h1 style="">GeeksforGeeks</h1>
    <h2> text-indent Property</h2>

    <h2>text-indent: 40%:</h2>
    <div class="gfg">
        Prepare for the Recruitment drive of product
        based companies like Microsoft, Amazon, Adobe
        etc with a free online placement preparation
        course. The course focuses on various MCQ's
        & Coding question likely to be asked in the
        interviews & make your upcoming placement
        season efficient and successful.
    </div>

</body>

</html>

Output: 

Example: In this example, we are using text-indent: initial; property.

<!DOCTYPE html>
<html>

<head>
    <title>
        CSS text-indent Property
    </title>

    <!-- CSS text-indent property -->
    <style>
        .gfg {
            text-indent: initial;
        }
    </style>
</head>

<body>
    <h1 style="">GeeksforGeeks</h1>
    <h2> text-indent Property</h2>

    <h2>text-indent: initial:</h2>
    <div class="gfg">
        Prepare for the Recruitment drive of product
        based companies like Microsoft, Amazon, Adobe
        etc with a free online placement preparation
        course. The course focuses on various MCQ's
        & Coding question likely to be asked in the
        interviews & make your upcoming placement
        season efficient and successful.
    </div>

</body>

</html>

Output: 

Supported Browsers: The browser supported by CSS text-indent property are listed below:

Article Tags :