使用条件注释很容易针对Internet Explorer浏览器特定的CSS规则:
<!--[if IE 6]>
...include IE6-specific stylesheet here...
<![endif]-->
有时是Gecko引擎(Firefox)行为不当。将CSS规则只针对Firefox而不是其他浏览器的最佳方法是什么?也就是说,不仅Internet Explorer应该忽略仅限于firefox的规则,WebKit和Opera也应该忽略。
注:我正在寻找一个“干净”的解决方案。在我看来,使用JavaScript浏览器嗅探器向我的HTML中添加一个“firefox”类并不算干净。我更希望看到一些依赖于浏览器功能的东西,就像条件注释只对IE来说是“特殊的”……
以下是针对Firefox浏览器的一些浏览器技巧,
使用选择器hacks。
_:-moz-tree-row(hover), .selector {}
JavaScript黑客
var isFF = !!window.sidebar;
var isFF = 'MozAppearance' in document.documentElement.style;
var isFF = !!navigator.userAgent.match(/firefox/i);
媒体查询黑客
这将工作,Firefox 3.6和以后
@media screen and (-moz-images-in-menus:0) {}
如果您需要更多信息,请访问browserhacks
以下是针对Firefox浏览器的一些浏览器技巧,
使用选择器hacks。
_:-moz-tree-row(hover), .selector {}
JavaScript黑客
var isFF = !!window.sidebar;
var isFF = 'MozAppearance' in document.documentElement.style;
var isFF = !!navigator.userAgent.match(/firefox/i);
媒体查询黑客
这将工作,Firefox 3.6和以后
@media screen and (-moz-images-in-menus:0) {}
如果您需要更多信息,请访问browserhacks