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

Sat*_*tya 5 html css safari internet-explorer-11 css-variables

:root Selector在某些浏览器中不起作用.

码:

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

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

小智 -1

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

在此输入图像描述