div li:first-child
what does above css selector targets?
1) First li's of every div on the page
or
2) All the descendant li's of the div where div is the first child of its parent
div li:first-child
what does above css selector targets?
1) First li's of every div on the page
or
2) All the descendant li's of the div where div is the first child of its parent
The first-child
applies to the li
. It should select li
s that are first children under any div.