2013년 1월 21일 월요일

Anchor Pseudo-classes




Anchor Pseudo-classes


a:link {color:#FF0000;}      /* unvisited link */
a:visited {color:#00FF00;}  /* visited link */
a:hover {color:#FF00FF;}  /* mouse over link */
a:active {color:#0000FF;}  /* selected link */


참고
a:hover MUST come after a:link and a:visited in the CSS defintion in order to be effective!

참고로 a:link 링크 순서앞에 a:visited가 먼져 오게 되면 효과가 없다

a:active MUST come after ahover in the CSS definition in order to be effective!

참고 문서
http://www.w3schools.com/css/css_pseudo_classes.asp

댓글 없음: