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>