remove background on active links in ie


/ Published in: CSS
Save to your folder(s)

Fixed it with this:

a:active {
background-color: transparent;
}

but keep and eye out for links that loose background color when clicked!

http://stackoverflow.com/questions/15342250/avoid-grey-background-on-ie-10-anchors-links


Copy this code and paste it in your HTML
  1. Fixed it with this:
  2.  
  3. a:active {
  4. background-color: transparent;
  5. }
  6.  
  7. but keep and eye out for links that loose background color when clicked!
  8.  
  9. http://stackoverflow.com/questions/15342250/avoid-grey-background-on-ie-10-anchors-links

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.