Quote:
Originally Posted by RbnJrg
Why don't use simply  :
Code:
p.neg_indent {
margin: 2em; /* of course, you can write here another value */
text-indent: -2em; /* of course, you can write here another value */
line-height: 1.2em;
}
|
Should the margin: 2em; not be margin-left: 2em; since your code would result in top, bottom, right and left margins being set to 2em. I would also dump the line-height but that's a personal preference to setting line-height in 1 place only unless there is a need for a different line height.