View Single Post
Old 04-20-2011, 04:24 AM   #4
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,516
Karma: 19000001
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
You can use plain <div>, with something like:

Code:
<div class="poetry">
  <div class="stanza">
    <div>line 1</div>
    <div>line 2</div>
    <div>line 3</div>
  </div>
  <div class="stanza">
    <div>line 4</div>
    <div>line 5</div>
    <div>line 6</div>
  </div>
</div>
Code:
div.poetry { /* set margins for the whole poetry block */ }
div.stanza { /* set margins for each stanza */ }
div.poetry div { /* set hanging indent for poetry lines */ }
Jellby is online now   Reply With Quote