Quote:
Originally Posted by Karellen
Use a hanging indent. Something like this in your css file...
Code:
.hanging {
text-indent: -1em;
}
and then use...
Code:
<p class="hanging">My poetry line</p>
|
That CSS is not going to work properly because you've left out the left-margin..
Code:
.hanging {
left-margin: 1em;
text-indent: -1em;
}