是否可以用纯 CSS 检测 Firefox 用户?
是否可以像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,但您可以尝试以下操作:
此网站还有更多选项
您可以将其放置在 CSS 文件中或放置在您的
标记之间HTML。工作正常!
Not that I know of, but you can try this:
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!现在你可以使用 @supports CSS 规则:
Nowadays you can use the @supports CSS rule: