Syntax for wildcard selector in the CSS spec.

This commit is contained in:
Yorick Peterse 2014-11-16 00:36:02 +01:00
parent 3c944f77c9
commit da36c53321
1 changed files with 6 additions and 0 deletions

View File

@ -120,6 +120,12 @@ This would return a set containing two elements: `<foo>` and `<bar>`
The corresponding XPath is also `*`.
### Syntax
The syntax for the universal selector is very simple:
universal = '*';
## Element Selector
W3 chapter: <http://www.w3.org/TR/css3-selectors/#type-selectors>