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; }
This worked for me:
p { margin-left: -2em; text-indent: 2em }