basic html is blow
<table class="section">
<tr>
<td>
<pre><span class="Tahoma">this is a test</span></pre>
</td>
</tr>
</table>
basic css is below
* {
margin: 0;
padding: 0;
}
table {
border-collapse: separate;
border-spacing: 0;
table-layout: fixed;
width: 100%;
}
table span {
font-size: 12pt;
line-height: 1;
color: #000;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
table pre {
margin: 1mm 1.5mm;
display: block;;
position: relative;
font-size: 0;
}
when is firefox or chrome i can get the td height to 23.5667px, but only the firefix can get the tr to 23.5667px, the chrome get the height is 24px
the decimal is impotant to me, beacuse although the chrome can't show correct width decimal px,but it can optimize it, so when has lots of div which has decimal height, chrome will show it almost correct
but if the tr is already cut the decimal, chrome can't optimize it
can any one told me how to deal with it