Configurar los enlaces que aparezcan con una línea tachada en lugar de subrayado.
<!DOCTYPE html> <html> <head> <title>Problema</title> <link rel="StyleSheet" href="estilos.css" type="text/css"> </head> <body> <a href="http://www.google.com">Google</a> <a href="http://www.yahoo.com">Yahoo</a> <a href="http://www.bing.com">Bing</a> </body> </html>
a:link { text-decoration: line-through; } a:visited { text-decoration: line-through; }
Retornar |