Heim > Artikel > Web-Frontend > IE9-下带有overflow属性的DIV被当作是其中positioned元素的父元素来决定定位_html/css_WEB-ITnose
例子:
<body style="margin: 0px;"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td style="height: 50px;"></td> </tr> <tr> <td> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td style="width: 50px;"></td> <td> <div id="divA" style="overflow: hidden; height: 100px; width: 100px; background-color: #000000;"> <div id="divB" style="position: absolute; left: 50px; height: 50px; width: 50px; top: 50px; background-color: #e0e0e0;">ABC</div> </div> </td> </tr> </table> </td> </tr> </table></body>
nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
我这里没问题啊 是不是dtd什么不对啊
或者干脆用那个黑色的div定位吧 吧A的position设为relative B的left和top都为0试试
nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
不纠结了。决定换个solution做。感谢两位的回复。