From fefbe796f1f72f087aa98b8f28cc8a1d94a564b8 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Fri, 12 Aug 2011 18:29:43 +0100 Subject: [PATCH] Remove excess padding from radio and checkbox in IE8/9. Fix #27 --- normalize.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/normalize.css b/normalize.css index 641b1ff..9fc7ae4 100644 --- a/normalize.css +++ b/normalize.css @@ -1,4 +1,4 @@ -/*! normalize.css 2011-08-11T09:26 UTC · http://github.com/necolas/normalize.css */ +/*! normalize.css 2011-08-12T17:28 UTC · http://github.com/necolas/normalize.css */ /* ============================================================================= HTML5 display definitions @@ -373,12 +373,14 @@ input[type="submit"] { } /* - * Addresses box sizing set to content-box in IE8/9 + * 1. Addresses box sizing set to content-box in IE8/9 + * 2. Addresses excess padding in IE8/9 */ input[type="checkbox"], input[type="radio"] { - box-sizing: border-box; + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ } /*