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

前端 未结 5 869
终归单人心
终归单人心 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

    Use :first-line and text-indent tag. Put your whole text in one block (div or paragraph). Indent all lines and then set the first line to text-indent = 0

    Example:

    p { text-indent: -10px }
    p:first-line { text-indent: 0 }
    

提交回复
热议问题