Search code examples
cssinternet-explorersassoutline

Removing <a> Outline in IE


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?


Solution

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

    border-style:none;