Home » CSS » Css miscellaneous » Question
  1. Which selects all unvisited links?
    1. :nth-child(n)
    2. :last-child
    3. :not(selector)
    4. :link
    5. 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.



Your comments will be displayed only after manual approval.