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
The custom selector is a pseudo-class, so we must use the `:--` to defined it.
79
74
80
75
For example to simulate [:any-link](http://dev.w3.org/csswg/selectors/#the-any-link-pseudo) selector:
81
76
@@ -99,20 +94,22 @@ a:visited {
99
94
color: blue;
100
95
}
101
96
```
97
+
102
98
### Multiple selectors
103
99
104
-
`@custom-selector`similar to CSS [`:matches()`](http://dev.w3.org/csswg/selectors-4/#matches)([`-moz-any()`](https://developer.mozilla.org/en-US/docs/Web/CSS/:any)/[`-webkit-any()`](http://css-tricks.com/almanac/selectors/m/matches/))selector,but it **doesn’t support** call multiple custom selector in the same selector, e.g.
100
+
`@custom-selector` it **doesn’t support** call multiple custom selector in the same selector, e.g.
0 commit comments