26 - Pseudoclases



Problema:

Definir la propiedad font-size con un valor distinto cuando la flecha del mouse está sobre el link y pintar al mismo tiempo el fondo de color amarillo.

<!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 {
  font-size:30px;
}
a:hover{
  font-size:40px;
  background-color:#ffff00;
}
Ver solución


Retornar