2013-02-26 45 views
0

我無法讓IE瀏覽器溢出圖片的上邊框。我設置的圖像負值的頂部邊距和設置的可見溢出:溢出:可見不工作<th> IE 7,8

#th_id img { 
    margin-top: -25px; 
} 

#th_id { 
    overflow: visible; 
} 

我也嘗試設置TR,TBODY,表,表的DIV容器溢出:可見但我仍然看到一個截斷的圖像,而不是圖像溢出在表格邊框上。 Firefox似乎顯示正確。

回答

2

我做了它在IE 7

試運行添加位置:相對的。
我的代碼看起來像這樣。

#th_id img { 
    position: relative; 
    margin-top: -25px; 
} 

#th_id { 
    position: relative; 
    overflow: visible; 
} 

希望它有助於..