Indenting only the first line of text in a paragraph?

后端 未结 8 1843
故里飘歌
故里飘歌 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:39

    In addition to text-indent, you can use the :first-line selector if you wish to apply additional styles.

    p:first-line {
        color:red;
    }
    
    p {
        text-indent:40px;
    }
    

    http://jsfiddle.net/Madmartigan/d4aCA/1/

提交回复
热议问题