From 3669799967d4cdc7f7cf667c785846aeedc0af99 Mon Sep 17 00:00:00 2001 From: Maxime Thirouin Date: Fri, 30 May 2014 16:58:58 +0200 Subject: [PATCH] Just remove the background-color from links on IE 10 I'm using some pretty brutal rules on all of my projects now ```css * { box-sizing: border-box; border-collapse: collapse; background-repeat: no-repeat; background-position: center center; background-size: cover; } ``` And this `a { background: transparent }` is overriding some of them. I'm not sure it's a desired behavior, so scoping to `background-color` seems a better choice. Don't you think ? --- normalize.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 08f895079..94650f31a 100644 --- a/normalize.css +++ b/normalize.css @@ -85,7 +85,7 @@ template { */ a { - background: transparent; + background-color: transparent; } /**