为什么tr切割td高度的小数

时间:2014-03-14 06:58:08

标签: html css google-chrome firefox

基本的html是打击

<table class="section">
    <tr>
        <td>
            <pre><span class="Tahoma">this is a test</span></pre>
        </td>
    </tr>
</table>

基本css在

之下
    * {
        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;
    }

什么时候是firefox或chrome我可以得到td高度为23.5667px,但只有firefix可以得到tr到23.5667px,chrome得到的高度是24px

十进制对我来说很重要,但是虽然chrome无法显示正确的十进制宽度px,但它可以优化它,所以当有很多具有十进制高度的div时,chrome会显示它几乎正确

但是如果tr已经被截断小数,则chrome无法对其进行优化

任何人都可以告诉我如何处理它

0 个答案:

没有答案