We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765b524 commit 4112226Copy full SHA for 4112226
README.md
@@ -82,6 +82,32 @@ will be processed to:
82
}
83
```
84
85
+## Pseudo class and elements
86
+
87
+```css
88
+.foo {
89
+ --foo-color: #ff0000;
90
+ color: var(--foo-color);
91
+}
92
93
+.foo:hover {
94
+ --foo-color: #00ff00;
95
96
+```
97
98
+will be processed to:
99
100
101
102
+ color: #ff0000;
103
104
105
106
+ color: #00ff00;
107
108
109
110
111
112
## Nested rules
113
0 commit comments