Fix IE 10 active link background color

Remove the gray background color from active links in IE 10.

Fix gh-172
This commit is contained in:
Nicolas Gallagher 2013-07-01 23:42:37 -07:00
parent 56af2b1170
commit 37b483c1e1
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,7 @@
== HEAD
* Remove the gray background color from active links in IE 10.
== 2.1.2 (May 11, 2013)
* Revert root `color` and `background` normalizations.

8
normalize.css vendored
View File

@ -79,6 +79,14 @@ body {
Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
background: transparent;
}
/**
* Address `outline` inconsistency between Chrome and other browsers.
*/