我在网页上有一个文字项目,在Opera浏览器中看起来太大了。有没有办法只为Opera编辑文本大小和css的其他方面?
答案 0 :(得分:4)
查看此链接(向下滚动到有关Opera的部分) Here
(我从来不知道这个......但显然你可以使用:
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
.operaSpecificStuff { }
}
答案 1 :(得分:3)
Opera有一个由em或%定义的字体大小的错误。只需重置字体大小:
body { font-size: 16px;}
答案 2 :(得分:3)
Opera不允许小于10px的字体大小 - 这导致Opera中的小文本上的字体更大。这是设计用途,因为此设置只能由用户更改。
请参阅以下主题:http://forums.devshed.com/css-help-116/force-opera-to-use-font-size-less-than-10px-or-763589.html