Possible de :hover sur :visited ???

Possible de :hover sur :visited ??? - HTML/CSS - Programmation

Marsh Posté le 17-11-2005 à 19:22:46    

Bonsoir a tous,
 
J'aimerai savoir si il est possible de faire un effet (:hover) au survol d'un lien déjà visité (:visited) ?
 
Si oui comment ?
 
Merci a tous  :jap:

Reply

Marsh Posté le 17-11-2005 à 19:22:46   

Reply

Marsh Posté le 17-11-2005 à 20:31:07    

a:visited:hover { ... }

Reply

Marsh Posté le 17-11-2005 à 20:32:40    

Déjà test et il me le prend comme :hover principal

Reply

Marsh Posté le 17-11-2005 à 20:36:25    

Ca marche sous Firefox en tout cas :/
 

Code :
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
  3. <head>
  4. <title>Test</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  6. <style type="text/css">
  7.  a:hover {font-size: 5em;}
  8.  a:visited:hover {font-size: 2em;}
  9. </style>
  10. </head>
  11. <body>
  12. <h1>Site</h1>
  13. <p>
  14.  Super je fais des <a href="#">liens</a> :/ !
  15.  <br />
  16.  Super je fais des <a href="#qsdf">liens</a> :/ !
  17. </p>
  18. </body>
  19. </html>

Reply

Marsh Posté le 17-11-2005 à 21:26:55    

Etonnant, moi ça ne marche pas
 

Code :
  1. a.image:link {
  2. display: block;
  3. width: 55px;
  4. height: 10px;
  5. background-image: url(images/carre.jpg);
  6. background-repeat: no-repeat;
  7. margin:2px;
  8. margin-left:auto;
  9. margin-right:auto;
  10. }
  11. a.image:visited {
  12. background-image: url(images/carre2.jpg);
  13. text-align:center;
  14. }
  15. a.image:hover {
  16. background-image: url(images/carre2.jpg);
  17. text-align:center;
  18. }
  19. a.image:active {
  20. text-align:center;
  21. }
  22. a.image:visited:hover {
  23. background-image: url(images/carre3.jpg);
  24. text-align:center;
  25. }


 
Mieux encore, mes liens disparaisse lorsqu'il ont etait visité...

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed