El :enlace se usa para apuntar al enlace no visitado para diseñar, no a los enlaces que ya han sido visitados. Para estilizar en visitado use “ :visited ”, para estilizar al hacer clic use “ :active ” y para estilizar mueva el mouse en el enlace use “:hover”.
Sintaxis:
:link { //property }
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <style> a:link { background-color: limegreen; } </style> </head> <body> <h3>Unvisited links.</h3> <a href="https://ide.geeksforgeeks.org/">Geeks for Geeks</a> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 4.0
- Borde 7.0
- Firefox 2.0
- Safari 3.1
- Ópera 9.6
Publicación traducida automáticamente
Artículo escrito por Vishal_Khoda y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA