:root
Selector is not working in some of the browsers.
Code:
: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>
These imported CSS are not applied in Safari 5.1.7 and IE11.
This css3 selector works fine in all edge browser, so have a little issues, please see my image, and I hope that help you.