InterviewSolution
Saved Bookmarks
| 1. |
Which selects all visited links?(a) :valid(b) :visited(c) :target(d) :selectionI have been asked this question by my school teacher while I was bunking the class.My question is taken from Server Specific CSS in chapter Layout & Images of CSS |
|
Answer» RIGHT answer is (b) :visited To EXPLAIN: :visited selects all visited LINKS, :valid selects all input elements with a valid value, :target selects the current active # element, ::selection selects the portion of an element that is selected by a USER. |
|