1

当您将鼠标悬停在我的网站http://seanbooks.tumblr.com/上的一本书上时,蓝色 div 似乎没有完全覆盖右侧的照片,留下 1px 的间隙。这似乎只发生在 Chrome 中。

4

2 回答 2

2

不知道为什么,但是,在我的屏幕上,图像拉伸到351px与容器相比350px,拉伸容器。如果你position: absolute在图像上设置,它似乎播放得更好。

于 2012-08-20T00:07:36.837 回答
1

我认为这是因为您在 .row .threecol 上的宽度是 22.05%,也许 chrome 不喜欢尝试将屏幕分割得那么远。我将其更改为 250px,看起来还可以。

.row .threecol {
width: 250px;
}
于 2012-08-20T00:04:39.617 回答