表格的上边框使用“overflow:hidden”和“border-collapse”样式消失

时间:2009-09-20 10:10:18

标签: css firefox

看看以下代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
<html>
<head></head>
<body>
<div style="float:left; overflow:auto; width:400px; height:300px;">
<table cellspacing="0" cellpadding="0" border="0" style="width:600px; border:solid 1px #999999; border-collapse:collapse;" ><tr><td>testing</td></tr></table>
</div>
</body>
</html>

Firefox的顶部边框消失了 有什么问题?

2 个答案:

答案 0 :(得分:0)

我会将table-layout: fixed;添加到样式

    <table cellspacing="0" cellpadding="0" border="0" 
    class="width:600px; border:solid 1px #999999; 
    border-collapse:collapse; table-layout: fixed; ">
    <tr>
    <td>testing</td>
    </tr>
    </table>

善,

答案 1 :(得分:0)

我的第一个建议是从元素中删除显式的boder="0",看看是否会改变显示。