Working in ePub, I have text that is split by <br/> tag, where the tage has a css style that adjusts the height of the break.
Code:
Line 1<br class="brheight"/>Line 2
css:
.brheight {
line-height: 2.5em;
}
This displays without issue in ePub, but when I convert to AZW3, the line height is re-set to 1em. To be clear, the new stylesheet still retains the same css styling (2.5em), but for some reason, the display doesn't reflect the code.
Any ideas as to what's happening in the conversion process that causes this error?