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.7和IE11.