Opera上的图像边缘样式看起来不合适

时间:2011-12-28 20:10:55

标签: html css opera

我的整个网站中有两张图片,仅在Opera上看起来不合适。我想知道是否有一种方法可以在图像顶部添加填充或边距,以便仅在Opera中设置样式。

如果我在Opera中只能使用任何特定标签,请告诉我。

由于

编辑:

我尝试了这个,但它不起作用:

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
.logo_style {
margin-top:-40px;
}

1 个答案:

答案 0 :(得分:0)

这样的东西曾经运作良好,但答案通常是一种非黑客方式来解决问题

@media not screen and (1) {
.yourClass {background:red} /* OP 11 */
}
@media not screen and (orientation) {
.yourClass {background:green} /* for the earlier versions of Opera that pick the first media query's rule + chrome/safari */
}