View Single Post
Old 08-12-2009, 10:07 AM   #10
nrapallo
GuteBook/Mobi2IMP Creator
nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.
 
nrapallo's Avatar
 
Posts: 2,958
Karma: 2530691
Join Date: Dec 2007
Location: Toronto, Canada
Device: REB1200 EBW1150 Device: T1 NSTG iLiad_v2 NC Device: Asus_TF Next1 WPDN
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...
nrapallo is offline   Reply With Quote