Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/07/2012, 17:16
israbart
 
Fecha de Ingreso: septiembre-2007
Mensajes: 76
Antigüedad: 17 años, 4 meses
Puntos: 2
Quitar borde punteado a los links

Buenas tardes,

No puedo quitar el borde punteado de los links al darle clic en IE9. Si alguien me puede ayudar, les dejo el codigo

Código HTML:
<html>
<head>
<style type="text/css">
a:hover{
    color: yellow;
}
a:active, a:focus{
    outline: none;
}

</style>
</head>

<body>
<div>
<a href="#" >opcion1</a>
<a href="#" >opcion2</a>
<a href="#" >opcion3</a>
<a href="#" >opcion4</a>
</div>
</body>
</html>