/ Published in: CSS
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
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
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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