: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 。