15 lines
151 B
CSS
15 lines
151 B
CSS
/* test variable changes */
|
|
|
|
box {
|
|
--test: red;
|
|
color: var(--test, green);
|
|
}
|
|
|
|
label:hover {
|
|
--test: blue;
|
|
}
|
|
|
|
label:active {
|
|
--test: initial;
|
|
}
|