View Single Post
Old 11-10-2011, 09:55 AM   #18
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,808
Karma: 206879174
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
If you don't want to use CSS you can just use:

Code:
<p>&nbsp;</p>
Where you want a blank line.

But I tend to create a special CSS class that has an extra-large "margin-top" attribute and assign that class to paragraphs when I want a space (scenebreak or whatever).

Code:
<p class="gap">Blah, blah, blah.</p>
And CSS that looks like:
Code:
.gap { margin-bottom:0; margin-right: 0; margin-top: 1em; margin-left:0; text-indent: 1.2em; }
DiapDealer is offline   Reply With Quote