Quote:
Originally Posted by DiapDealer
If you don't want to use CSS you can just use:
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>
|
You could also use an inline style, instead of the CSS, applied to the paragraph needing a preceding space:
Code:
<p style="margin-top: 1em;"> ...