Dup Goto 📝

Hanging Indents in HTML/CSS

To Pop
10 lines, 19 words, 149 chars Wednesday 2023-11-22 01:11:07

Use positive padding and negative text-indent thus:

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