I normally use soothing like this:
Code:
<p class="newscene1">blah, blah, blah.</p>
<p>blah, blah, blah.</p>
<p>blah, blah, blah.</p>
With the CSS being:
Code:
p {text-indent:1em;
margin:0;}
.newscene1 {text-indent:0;
margin-top:1em;}
This gives a default indent to all paragraphs and no space between the paragraphs of the scene. And "newscene1" is what I use for a scene break as it removes the indent and add a single line space from the previous paragraph.