View Single Post
Old 03-31-2018, 09:20 AM   #8
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,101
Karma: 18727053
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Thanks for the input Stepheno. I would like to add on to your piece of advice, though. Please do NOT use <p>&nbsp;</p> as a way to create space between lines/paragraphs/tables/divs/blockquotes/etc. Some devices completely ignore them (defeating your purpose in putting them there), while others will display them but make the extra space look funky.

It is a much better idea to simply include the extra space in your css styling. For ecxample:

Code:
p.SpaceBefore {margin-top:2em}
div, blockquote, table {margin-top:2em; margin-bottom:2em}

<p>Normal paragraph.</p>
<p>Normal paragraph.</p>
<p>Normal paragraph.</p>
<p>Normal paragraph.</p>
<p class="SpaceBefore">Paragraph with extra space before it.</p>
<p>Normal paragraph.</p>
<p>Normal paragraph.</p>
<p>Normal paragraph.</p>
<blockquote>
<p>Quote paragraph.</p>
<p>Quote paragraph.</p>
<p>Quote paragraph.</p>
</blockquote>
<p>Normal paragraph.</p>
<p>Normal paragraph.</p>
<p>Normal paragraph.</p>
<div>
<p>Paragraph in div.</p>
<p>Paragraph in div.</p>
<p>Paragraph in div.</p>
</div>
Turtle91 is online now   Reply With Quote