I can't see what would be the culprit as the <br class="calibre3"/> doesn't have any interference from the CSS
Code:
.calibre3 {
display: block
}
But perhaps it is a gloablly defined problem from using <body text="#000000" class="calibre"> with the CSS being
Code:
.calibre {
background-color: #fff;
display: block;
font-family: Times New Roman;
font-size: 1em;
font-weight: normal;
line-height: normal;
margin-bottom: 0;
margin-left: 5pt;
margin-right: 13pt;
margin-top: 0;
page-break-before: always;
text-align: justify
}
where 'margin-top: 0;' doesn't allow any white line spacing between block tags.
It may even be a more subtle issue of using that html code
Code:
<div class="calibre4">mark </div>
<br class="calibre3"/>
<div class="calibre4">his </div>
since the first <div> doesn't usually cause a line-break and the subsequent <br> just advances to the start of the next line and the second <div> also doesn't cause any line advance/break...