有没有办法使一些CSS规则仅适用于Opera(11)?
解决方法
我爱挑战!
花了我一段时间,但我终于找到了:
花了我一段时间,但我终于找到了:
body {background:0} /* default */ @media not screen and (1) { body {background:red} /* OP 11 */ } @media not screen and (orientation) { body {background:green} /* for the earlier versions of Opera that pick the first media query's rule + chrome/safari */ }
浏览器测试:
红色:歌剧11
>绿色:Opera 10和10.5 WebKit浏览器
>无:Opera 9.26 Firefox 3.6 IE9
它与error-handling有关,也是不消除全局结果的事实(WebKit浏览器不正确地评估方向,而没有有效的值).由于在presto 2.7中支持定向,因此第二个媒体查询为FALSE.
错误的方向黑客听起来像是一个很好的名字.