Quote:
Originally Posted by Pumpkin Soup
Thanks for the feedback, everyone! The reason I needed additional 'blank lines' is because the novelist marked certain passages with additional space between them, and I was trying to preserve that (obviously line breaks are non-functioning, but I made progress with paragraph styles).
|
You don't do section breaks with blank lines. You do it with CSS like this...
Code:
.spacebreak {
margin-top: 2em;
margin-bottom: 0;
text-indent: 0
}
Code:
<p class="spacebreak">The start of the next section</p>