Advertisement
Zoren7

Anchor Pseudo-classes

Mar 28th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.31 KB | None | 0 0
  1. Anchor Pseudo-classes
  2.  
  3. /* unvisited link */
  4. a:link {
  5.     color: #FF0000;
  6. }
  7.  
  8. /* visited link */
  9. a:visited {
  10.     color: #00FF00;
  11. }
  12.  
  13. /* mouse over link */
  14. a:hover {
  15.     color: #FF00FF;
  16. }
  17.  
  18. /* selected link */
  19. a:active {
  20.     color: #0000FF;
  21. }
  22.  
  23. DOWNLOED FILE FROM MEDIA FIRE : http://ow.ly/6mf630alatU
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement