我对 safari 有疑问。我已经连续搜索了 6 个小时来解决问题,如果我的解释不好,请原谅我。所以问题是:我在缩略图上添加了悬停效果,它适用于所有浏览器,但在 safari 和 IE 中没有正确放置拇指。我曾尝试使用:
@media screen and (-webkit-min-device-pixel-ratio:0){
img.a {
position: absolute;
top: -500;
z-index: 10;
}
img.b {
position: absolute;
top: -500;
}
}
但这适用于 webkit 浏览器,也意味着 chrome。
我目前使用的 css 适用于 chrome 和 firefox:
img.a {
position: absolute;
top: -500;
margin-left: -115px;
z-index: 10;
width: 230px;
height: 120px;
border: none;
}
img.b {
position: absolute;
top: -500;
margin-left: -115px;
width: 230px;
height: 120px;
border: none;
}
如果有人有解决方案,那真的可以节省我的时间:)
如果您需要检查,请访问以下网站:www.janthorb.com