View Single Post
Old 08-05-2011, 03:24 AM   #7
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,558
Karma: 19620479
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
... but why do you use a table to format endnotes? I guess it's only the hanging indent you are after. I'd rather just have a different alignment than use a table. Of course, you are free to use whatever you want, but tables tend to give headaches.

Code:
<p class="endnote"><span class="en_number">[12]</span> Louis David, a famous French Painter.</p>
with, for instance:

Code:
p.endnote {
  margin-left: 2em;
  text-indent: -2em;
  page-break-before: always;
}
span.en_number {
  font-weight: bold;
  padding-right: 0.5em;
}
Jellby is offline   Reply With Quote