DRAG DROP
You are developing a web page by using HTML5 and CSS3.
Hyperlinks on the page must be rendered with a style that reflects the last user action
performed.
You need to style the four anchor elements in the document.
In what order should you specify the four anchor selectors? (To answer, move the
appropriate anchor selectors from the list of CSS codes to the answer area and arrange
them in the correct order.)

Explanation:
You can learn about the anchor pseudo-classes here:
http://www.w3schools.com/css/css_pseudo_classes.asp
As it states:
Note: a: hover MUST come after a: link and a: visited in the CSS definition in order to be
effective!
Note: a: active MUST come after a: hover in the CSS definition in order to be effective!!
Correct Answer for me:
link
hover
active
visited
0
0
The answer is correct.
Link,Visited,Hover,Active
0
0
as specified in here:
https://www.w3.org/TR/CSS21/selector.html%23id-selectors#dynamic-pseudo-classes
a:link { color: red } /* unvisited links */
a:visited { color: blue } /* visited links */
a:hover { color: yellow } /* user hovers */
a:active { color: lime } /* active links */
Note that the A:hover must be placed after the A:link and A:visited rules, since otherwise the cascading rules will hide the ‘color’ property of the A:hover rule. Similarly, because A:active is placed after A:hover, the active color (lime) will apply when the user both activates and hovers over the A element.
0
0