27 - Eliminar el subrayado a un enlace "a" por medio de las pseudoclases



Problema:

Configurar los enlaces que aparezcan con una línea tachada en lugar de subrayado.

<!DOCTYPE html>
<html>
<head>
  <title>Problema</title>
  <meta charset="UTF-8">
  <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;
}
Ver solución


Retornar