Chrome检查元素的奇怪问题

Mat*_*Hui 8 css google-chrome

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

tw1*_*w16 2

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

#content{
    position: relative;
}
.page-company-profile .node .taxonomy_image_wrapper {
    position: absolute;
    left: 500px;
    top: 58px;
}
Run Code Online (Sandbox Code Playgroud)