1

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?

Community
  • 1
  • 1
OneChillDude
  • 7,856
  • 10
  • 40
  • 79

1 Answers1

3

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

border-style:none;
Glenn Dayton
  • 1,410
  • 2
  • 20
  • 38