Dup Ver Goto 📝

Hanging Indents in HTML/CSS

To
10 lines, 19 words, 149 chars Page 'HangingIndent1' does not exist.

Use positive padding and negative text-indent thus:

p.hanging {
   padding-left: 3em;
   text-indent: -3em;
}
<p>hello</p>