Quote:
Originally Posted by wisark
I would like that if that happens, the words that do not fit in the line go automatically to the next line (which it already happens) but with some indentation, like for example:
|
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>