Search code examples
htmlcssindentationtargettext-indent

Indenting only the first line of text in a paragraph?


I have several paragraphs that I would like to indent, although only the first lines of these paragraphs.

How would I target just the first lines using CSS or HTML?


Solution

  • Use the text-indent property.

    p { 
       text-indent: 30px;
    }
    

    jsFiddle.