我在相对定位的元素(正文内容)之后放置了一个绝对定位的元素(标题)。由于某种原因,这在除 IE8 之外的所有浏览器中都可以正常工作。标题与内容元素重叠,但未定位在其绝对位置。我使用的css规则:
#bodyContent{
clear: both;
display: table;
width: 920px;
margin-top: 173px;
_margin-top: 178px;
position: relative;
}
#headerContainer {
position: absolute;
top: 0px;
left:0px;
}
标题部分从内容元素位置呈现,其位置有空格。
这是IE8中的错误吗?谁能帮我解决这个问题?