Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. a:link, a:visited {
  2. background-color: white;
  3. color: black;
  4. border: 2px solid green;
  5. padding: 10px 20px;
  6. text-align: center;
  7. text-decoration:none;
  8. display: inline-block; /*eventualmente ensino isto*/
  9. }
  10.  
  11. a:hover, a:active {
  12. background-color:green;
  13. color:white;
  14. }
  15.  
  16. /* link não visitado
  17. a:link {
  18. color: red;
  19. text-decoration:none;
  20. background-color: yellow;
  21. }
  22.  
  23. /* link visitado
  24. a:visited {
  25. color: green;
  26. text-decoration:none;
  27. background-color: cyan;
  28. }
  29.  
  30. /* rato passa por cima
  31. a:hover {
  32. color: blue;
  33. text-decoration:underline;
  34. background-color: lightgreen;
  35. }
  36.  
  37. /* link ativo/selecionado
  38. a:active {
  39. color: black;
  40. text-decoration:underline;
  41. background-color: hotpink;
  42. }
  43. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement