Indenting only the first line of text in a paragraph?

后端 未结 8 1776
故里飘歌
故里飘歌 2020-12-09 01:16

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?<

相关标签:
8条回答
  • 2020-12-09 01:58

    Here you go:

    p:first-line {
        text-indent:30px;
    }
    

    Didn't see a clear answer for a CSS newbie, so here's an easy one.

    0 讨论(0)
  • 2020-12-09 01:59

    Use the text-indent property.

    p { 
       text-indent: 30px;
    }
    

    jsFiddle.

    0 讨论(0)
提交回复
热议问题