May 2017
Intermediate to advanced
448 pages
10h 10m
English
|
Selector |
Matches |
|
* |
All elements. |
|
#id |
The element with the given ID. |
|
element |
All elements of the given type. |
|
.class |
All elements with the given class. |
|
a, b |
Elements that are matched by a or b. |
|
a b |
Elements b that are descendants of a. |
|
a > b |
Elements b that are children of a. |
|
a + b |
Elements b that immediately follow a. |
|
a ~ b |
Elements b that are siblings of a and follow a. |
Read now
Unlock full access