View Single Post
Old 04-04-2014, 02:39 PM   #2
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
Read up on your HTML skills. A tab has no meaning in HTML and will be ignored by readers anyway. Don't use it, it will never work.

If you want an indent, define it in your stylesheet, e.g.:
Code:
p.indent {text-indent: 1.2em;}
. In your HTML you can then have
Code:
<p class="indent">This will be indented."</p>
. Of course, if your base is that all paragraphs should be indented, you can just set the text-indent on the paragraph tag.
Toxaris is offline   Reply With Quote