Pregunta

Possible Duplicate:
How to remove outline Image link?

I'm trying to remove the link outline in IE. It's really annoying and unsightly. I've tried several things. My CSS/SASS looks like this

a {
  outline: none;
  outline: 0;
   &:focus {
     outline: none;
     outline: 0;
   }
   &:active {
     outline: none;
     outline: 0;
   }
}

Anyone have any tips or tricks. I'm testing in IE9, so I'm maybe theres something special for that?

¿Fue útil?

Solución

Getting rid of the outline of an image or other objects can be done like so:

border-style:none;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top