Section 5 - CSS Basics Flashcards
1
Q
all elements 1 level below
A
child selector
>
2
Q
all descendents
A
space
3
Q
specific attribute value
A
selector[attribute=”value”]
4
Q
custom attribute value
A
selector[data-attribute=”value’]
5
Q
sibling
A
~
6
Q
adjacent
A
+
7
Q
select the nth child
A
:nth-child(2),
:nth-child(2n)
8
Q
nth of type
A
:nth-of-type(2)
:nth-of-type(2n)
9
Q
select elements that are the only child of parent
A
:only-child
10
Q
select elements that are the only child of specific type of its parent
A
:only-of-type