View Single Post
Old 01-22-2018, 10:01 AM   #43
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,690
Karma: 205039118
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by Maui View Post
Assuming there are margins in the browsers/readers stylesheet for <p> or in the user stylesheet, this will result in an emphasized space between two other elements
Not with many renderers it won't. If you're not going to use css for vertical space between elements (and you should), then you need to have some sort of content for that vertical spacing to properly render across the widest range of rendering engines.

Typically something like:
Code:
<p>&nbsp;</p>
or
Code:
<p><br/></p>
is often utilized.

The empty tags pointed out above will often result in no vertical spacing whatsoever on many reading devices/apps.
DiapDealer is offline   Reply With Quote