From 36ecde0952c87be7849c362939bca623ca587b04 Mon Sep 17 00:00:00 2001 From: komputist Date: Mon, 28 Nov 2011 02:48:53 +0100 Subject: [PATCH 1/2] the default CSS for img should not just be --- normalize.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 977681330..d3ae0411a 100644 --- a/normalize.css +++ b/normalize.css @@ -260,12 +260,13 @@ nav ol { /* * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3 + For IE7/8/9, it also removes the border on img elements with usemap="#foo" (image map). * 2. Improves image quality when scaled in IE7 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */ img { - border: 0; /* 1 */ + img {border:0; /* 1 */ -ms-interpolation-mode: bicubic; /* 2 */ } From 463fb5b97a0ddd90509caaaa5ab3107ea7a1a951 Mon Sep 17 00:00:00 2001 From: komputist Date: Mon, 28 Nov 2011 02:51:37 +0100 Subject: [PATCH 2/2] Corrected idiotic typo. --- normalize.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index d3ae0411a..470363b61 100644 --- a/normalize.css +++ b/normalize.css @@ -266,7 +266,7 @@ nav ol { */ img { - img {border:0; /* 1 */ + border:0; /* 1 */ -ms-interpolation-mode: bicubic; /* 2 */ }