CSS Selector Flashcards
1
Q
Figure the HTML elements that are selected by these:
- ul
- li
- .myClass
- # myID
A
- Unordered List
- List Item
- Class myClass
- Id myID
2
Q
Figure the HTML elements that are selected by these relational selectors and combinators:
- ul li
- ol li
- ol > li
- li.hasaclass + li
- li.hasaclass ~ li
A
- List items that are nested in an unordered list
- List items that are nested in an ordered list
- li that are child of ol
- li that is only after the li with class hasaclass
- all li that are after li.hasaclass
3
Q
E[attribute^=value]
A
find any element, which attribute starts with value