Is there a list of browser conditionals for use including stylesheets?(是否有包括样式表在内的浏览器条件列表?)
问题描述
我见过人们在他们的 HTML 中做这样的事情:
I've seen people doing things like this in their HTML:
<!--[if IE]>
<link rel="stylesheet" href="ie.css" type="text/css" />
<![endif]-->
这是否适用于所有现代浏览器?是否有可以使用这种 if 语句的浏览器类型列表?
Does this work across all modern browsers and is there a list of browser types that will work with that kind of if statement?
编辑
谢谢罗斯.有兴趣了解 gt、lt、gte 和 <e.
推荐答案
这适用于所有浏览器,因为除了 IE 之外的任何浏览器都可以看到 <!--IGNORED COMMENT-->
.如果评论包含条件子句,则只有 IE 会读取评论.看看这篇文章
This works across all browsers because anything except IE sees <!--IGNORED COMMENT-->
. Only IE reads the comment if it contains a conditional clause. Have a look at this article
您还可以指定 IE 的版本.例如:
You can also specify which version of IE. For example:
<!--[if IE 8]>
<link rel="stylesheet type="text/css" href="ie8.css" />
<![endif]-->
这篇关于是否有包括样式表在内的浏览器条件列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否有包括样式表在内的浏览器条件列表?


基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01