Quote:
Originally Posted by Karellen
Sounds like you want a hanging indent.
|
Thanks, that does work if I use <div class="blockq hanging"> and set the CSS to:
Code:
.hanging > p {
margin-left: 1em;
text-indent: -1em;
}
The three classes were because the text in question had many direct quotes, letters, etc. and this one poem - in the other cases it doesn't really matter how the line wraps, but in poetry it often does; so the first class was to set the padding/margins of all intended text to same, and the other two for the poem (since you'd need one class to set the body, and the other class to set the first-line pseudo-element, if it worked). But as it looks like the support isn't there, this works just as well, and uses one class less.