You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`::scrollbar` will be replaced to `::-webkit-scrollbar`:
35
-
<Class2CSS>
36
-
{['bg:slate-90::scrollbar']}
37
-
</Class2CSS>
38
+
<details>
39
+
<summary>Generated CSS</summary>
40
+
<Class2CSS>
41
+
{['bg:slate-90::scrollbar']}
42
+
</Class2CSS>
43
+
</details>
38
44
39
45
---
40
46
@@ -47,23 +53,28 @@ Assuming that a brand new CSS property of `new-property` has just been launched,
47
53
<!-- @MARK {new-property:value} -->
48
54
<divclass="{new-property:value}">…</div>
49
55
```
50
-
Generated CSS:
51
-
```css
52
-
.\{new-property\:value\} {
53
-
new-property: value
54
-
}
55
-
```
56
+
<details>
57
+
<summary>Generated CSS</summary>
58
+
```css
59
+
.\{new-property\:value\}{
60
+
new-property: value
61
+
}
62
+
```
63
+
</details>
64
+
56
65
Once we support it, you can omit the `{}`:
57
66
```html
58
67
<!-- @MARK new-property:value -->
59
68
<divclass="new-property:value">…</div>
60
69
```
61
-
Generated CSS:
62
-
```css
63
-
.new-property\:value {
64
-
new-property: value
65
-
}
66
-
```
70
+
<details>
71
+
<summary>Generated CSS</summary>
72
+
```css
73
+
.new-property\:value {
74
+
new-property: value
75
+
}
76
+
```
77
+
</details>
67
78
68
79
### Support the new CSS selector
69
80
Master CSS will extract the applied selector string according to the syntax structure and insert it into the corresponding CSS rule, you can enter any string after `:` or `::`.
@@ -73,9 +84,11 @@ This means that the selector can be used with the most standard syntax right awa
0 commit comments