Chrome检查元素的奇怪问题

时间:2011-08-06 10:06:29

标签: css google-chrome

当我加载页面时,其中一个图像高于预期的图像。当我右键单击页面上任何位置的“检查元素”时,图像将移回其正常位置。什么可能导致这个?在FF中,图像在页面加载时处于正确位置。以下是在inspect元素之前和之后的样子:http://community.glumbo.com/uploads/gallery/album_4/gallery_1_4_6556.png

1 个答案:

答案 0 :(得分:2)

如果你使用下面的css,它应该可以解决你的问题。

#content{
    position: relative;
}
.page-company-profile .node .taxonomy_image_wrapper {
    position: absolute;
    left: 500px;
    top: 58px;
}