From 37b483c1e1f0a11f3734c86410d051a31378a512 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Mon, 1 Jul 2013 23:42:37 -0700 Subject: [PATCH] Fix IE 10 active link background color Remove the gray background color from active links in IE 10. Fix gh-172 --- CHANGELOG.md | 2 ++ normalize.css | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ca7cdf..98c6a9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/normalize.css b/normalize.css index 6adf56e..8b977e1 100644 --- a/normalize.css +++ b/normalize.css @@ -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. */