Hi, there is two bugs reported in this post :
1- Table cell content not well placed
2- Cell content not full
Styles used are :
So I've made a footer in which there is this code :
When FooterBlockX are displayed, the text in table cell appear under the cell (just first lines are displayed) and under the div FooterBlock1 in the generated PDF, but under Firefox, Opera and IE, it's well displayed.
After I've changed the position style from FooterBlock1 to "relative", everything goes well in the PDF (for FooterBlock1 only), but when I display the HTML page in a browser, the FooterBlock1 isn't on the same line with the FooterBlock2.
1- Table cell content not well placed
2- Cell content not full
Styles used are :
.FooterMainBlock
{
position: absolute;
font-family:Arial;
font-size: 7pt;
line-height: 8.5pt;
margin-top: 264mm;
margin-left: 39mm;
width: auto;
vertical-align:text-bottom;
}
.FooterBlock1
{
position: absolute;
background-color: #d4effc;
margin-left: 0mm;
width: 37mm;
height: 23mm;
vertical-align:text-bottom;
}
.FooterBlock2
{
position: absolute;
background-color: #d4effc;
margin-left: 42mm;
width: 37mm;
height: 23mm;
vertical-align:text-bottom;
}
.FooterCell
{
width: 37mm;
height: 23mm;
text-align: left;
vertical-align: bottom;
border: thin solid #000000;
}
So I've made a footer in which there is this code :
<div id="footer" class="FooterMainBlock">
<div class="FooterBlock1">
<table>
<tr>
<td class="FooterCell">
<span>line 1<br/>line 2<br/>line 3</span>
</td>
</tr>
</table>
</div>
<div class="FooterBlock2">
<table>
<tr>
<td class="FooterCell">
<span>line 1<br/>line 2<br/>line 3</span>
</td>
</tr>
</table>
</div>
</div>
When FooterBlockX are displayed, the text in table cell appear under the cell (just first lines are displayed) and under the div FooterBlock1 in the generated PDF, but under Firefox, Opera and IE, it's well displayed.
After I've changed the position style from FooterBlock1 to "relative", everything goes well in the PDF (for FooterBlock1 only), but when I display the HTML page in a browser, the FooterBlock1 isn't on the same line with the FooterBlock2.