Advertisement
Guest User

test

a guest
Jan 25th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.23 KB | None | 0 0
  1. /* unvisited link */
  2. a:link {
  3.     color: #FF0000;
  4. }
  5.  
  6. /* visited link */
  7. a:visited {
  8.     color: #00FF00;
  9. }
  10.  
  11. /* mouse over link */
  12. a:hover {
  13.     color: #FF00FF;
  14. }
  15.  
  16. /* selected link */
  17. a:active {
  18.     color: #0000FF;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement