当我在其中的任何元素的样式中指定 aheight
时,IE 使整个事物的宽度为 100%,而不是使其宽度保持“自动调整大小”。
其他浏览器显示它很好,但不是 IE。我该如何解决?
<div style="position:absolute;top:50px;left:50px;background:green;">
<div>
<div>test</div>
<div style="height: 20px;">this makes it 100% width in IE. why?</div>
</div>
</div>
谢谢!