Indenting only the first line of text in a paragraph?

后端 未结 8 1850
故里飘歌
故里飘歌 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.

提交回复
热议问题