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

发布于 2024-11-05 00:58:22 字数 219 浏览 3 评论 0原文

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

例如,IE浏览器可以这样检测:

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

Can be Firefox browser detector like this code?

Is it possible to detect Firefox Browser only with CSS like IE?

for example, IE browser can be detected like:

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

Can be Firefox browser detected like this code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空宴 2024-11-12 00:58:22

据我所知,但您可以尝试以下操作:

@-moz-document url-prefix() {
 
    #my-id { font-size: 100%; }
 
}

此网站还有更多选项

您可以将其放置在 CSS 文件中或放置在您的

Not that I know of, but you can try this:

@-moz-document url-prefix() {
 
    #my-id { font-size: 100%; }
 
}

This website has more options as well

You can place this in your CSS file or between your <style type='text/css'> tags in your HTML. Works Fine!

酒几许 2024-11-12 00:58:22

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

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

Nowadays you can use the @supports CSS rule:

@supports not( -moz-appearance:none ){
  /* Add non-firefox CSS code here */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文