May 2017
Intermediate to advanced
448 pages
10h 10m
English
|
Selector |
Matches |
|
[attr] |
Elements that have the attribute attr. |
|
[attr="value"] |
Elements whose attr attribute is value. |
|
[attr!="value"] |
Elements whose attr attribute is not value. |
|
[attr^="value"] |
Elements whose attr attribute begins with value. |
|
[attr$="value"] |
Elements whose attr attribute ends with value. |
|
[attr*="value"] |
Elements whose attr attribute contains the substring value. |
|
[attr~="value"] |
Elements whose attr attribute is a space-delimited set of strings, one of which is value. |
|
[attr|="value"] |
Elements whose attr attributes is either equal to value or begins with value followed by a hyphen. |
Read now
Unlock full access