How can I indent all text in a paragraph except the first line?

前端 未结 5 901
终归单人心
终归单人心 2020-12-11 02:53

This is an example fiddle.

What I\'m trying to do is indent everything after the first line.

Right now it looks like:

Categories: Aperiri 
nostr         


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-11 03:53

    I found it best to use a simple solution like this:

    p:nth-child(n+2){text-indent: 3px;}
    

提交回复
热议问题