Closed rakutaro closed 8 years ago
The following type of use of :not selector causes a syntax error. Browsers can handle this well, but doesn't this conform to the specification?
.someclass:not(.otherclass, #someid, #otherid) { ... }
Sorry, that doesn't work on browsers, either. It should be written like:
.someclass:not(.otherclass):not(#someid):not(#otherid) { ... }
The following type of use of :not selector causes a syntax error. Browsers can handle this well, but doesn't this conform to the specification?
.someclass:not(.otherclass, #someid, #otherid) { ... }