2009-09-20 69 views
1

下面的代碼看看:表的上邊框消失使用樣式「溢出:隱藏」和「邊框崩潰」

<!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中消失。
有什麼問題?

回答

0

我想補充的造型

<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> 

善良,

+0

我只是將代碼從類更改爲樣式。發生問題。 – Billy

+0

編輯另一個建議 –

0

我的第一個建議是從元素中刪除明確boder="0",看看是否改變顯示器。