I have many HTML documents constructed like below:
Code:
<div >
<div>div text</div>
<table>
<tr>
<td class="a">cell text</td><td class="a">cell text</td>
</tr>
...
</table>
and associated CSS
Code:
body{
font-size:70%;
}
table {
font-size:100%;
}
td.a {
font-size:100%;
}
In HTML view (IE, FF ...) both: "div text" and "cell text" have the same font-size (70%) but in generated PDF the "cell text" is bigger than the "div text".
Is it a bug in PD4ML or is it a feature ?
Is the way to achieve in PDF the same result as in HTML without CSS manipulation ?