是否可以在纯CSS中检测Firefox用户?

时间:2011-05-03 18:41:50

标签: css firefox browser-detection

是否可以仅使用像IE这样的CSS检测Firefox浏览器?

例如,IE浏览器可以被检测为:

<!--[if IE 7]>
   /* IMPORTING CSS FOR IE */
<![endif]-->

可以像这段代码一样检测到Firefox浏览器吗?

2 个答案:

答案 0 :(得分:53)

我不知道,但你可以试试这个:

@-moz-document url-prefix() {

    #my-id { font-size: 100%; }

}

This website还有更多选项

您可以将其放在CSS文件中或HTML中的<style type='text/css'>标记之间。工作得很好!

答案 1 :(得分:7)

现在您可以使用@supports CSS规则:

@supports not( -moz-appearance:none ){
  /* Add non-firefox CSS code here */
}