diff --git a/demo.html b/demo.html index fe998d9..e908043 100644 --- a/demo.html +++ b/demo.html @@ -55,12 +55,12 @@
The a element example
- The abbr element example
+ The abbr element and abbr element with title examples
The b element example
The cite element example
The code element
example
The del element example
- The dfn element example
+ The dfn element and dfn element with title examples
The em element example
The i element example
The img element example
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 */
}
/*