Indent starting from the second line of a paragraph with CSS

后端 未结 6 1187
轻奢々
轻奢々 2020-12-07 13:34

How can I indent starting from the second line of a paragraph?

I\'ve tried

p {
    text-indent: 200px;
}
p:first-line {
    text-indent: 0;
}
         


        
6条回答
  •  旧时难觅i
    2020-12-07 14:06

    There is a CSS3 working draft that will (hopefully soon) allow you to write just:

    p { text-indent: 200px hanging; }
    

    Keep an eye on: https://developer.mozilla.org/en-US/docs/Web/CSS/text-indent

提交回复
热议问题