:root导入的CSS无法在safari和IE 11中运行

时间:2017-09-15 04:57:58

标签: html css safari internet-explorer-11 css-variables

:root Selector在某些浏览器中无效。

代码:

:root {
    --blue: #4d6fd3;
    --yellow: #d8c812;
}
h1{
    color: var(--blue);
}
h2{
    color: var(--yellow);
}
<h1>This is a heading with blue color</h1>
<h2>This is a heading with yellow color</h2>

这些导入的CSS不适用于 Safari 5.1.7 IE11

1 个答案:

答案 0 :(得分:0)

这个css3选择器在所有边缘浏览器中都能正常工作,所以有一点问题,请看我的图像,希望对你有帮助。

enter image description here