2011-12-28 60 views
0

我的整個網站有兩個圖像,只在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; 
} 

回答

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 */ 
} 
+0

我試過上面的但它沒有工作,謝謝 – Sam 2011-12-28 20:21:53

+0

編輯與唯一的其他方式我見過 – 2011-12-28 20:24:01

+0

作品非常感謝 – Sam 2011-12-28 20:30:00