-
Which selects all unvisited links?
-
- :nth-child(n)
- :last-child
- :not(selector)
- :link
- None of these
Correct Option: D
:link selects all unvisited links, :not(selector) selects every element that is the second child of its parent, :last-child selects every <p> element that is the last child of its parent.