Basically, the title says it. By "custom CSS properties" I mean, for example --main-color: black;
Basically, the title says it. By "custom CSS properties" I mean, for example --main-color: black;
Simply like below. A random value assigned to a random custom property
@supports not (--foo: bar) {
body {
background: red;
}
}
The body background will turn red if your browser doesn't support custom properties