From ef12292cc21dbd720b711ccf55a594d9dcb0fc18 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 27 Apr 2011 18:18:20 -0700 Subject: [PATCH] Update --- normalize.css | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/normalize.css b/normalize.css index 1ce512a..342d2b9 100644 --- a/normalize.css +++ b/normalize.css @@ -21,6 +21,7 @@ canvas, video { display: inline-block; *display: inline; + _display: expression(this.controls ? 'inline' : 'none'); *zoom: 1; } @@ -33,14 +34,13 @@ video { * Improves page center consistency regardless of content height in all browsers * 3. * Remove text size adjust tap color for element - * Fixes text size and tap color displayed oddly in iOS + * Fixes tap color displayed oddly in iOS */ html { cursor: default; /* 1 */ overflow-y: scroll; /* 2 */ -webkit-tap-highlight-color: transparent; /* 3 */ - -webkit-text-size-adjust: none; /* 3 */ } /* @@ -101,14 +101,18 @@ mark { /* * Redeclare monospace font family to
    elements
+ * 1.
  * Fixes font family set oddly in C10 S5
+ * 2.
+ * Fixes monospace line-height overflow in iOS
 */
 
 pre,
 code,
 kbd,
 samp {
-	font-family: monospace, sans-serif;
+	font-family: monospace, sans-serif; /* 1 */
+	vertical-align: top; /* 2 */
 }
 
 /*
@@ -145,13 +149,25 @@ q:after {
 }
 
 /*
- * Remove line height for   elements
- * Fixes line height within multi-line text displayed oddly in all browsers
+ * Define alignment for	   elements
+ * Fixes alignment within multi-line text displayed oddly in all browsers
 */
 
 sub,
 sup {
+	font-size: 75%;
 	line-height: 0;
+	position: relative;
+}
+
+sup {
+	top: 0.75em;
+	vertical-align: top;
+}
+
+sub {
+	bottom: 0.75em;
+	vertical-align: bottom;
 }
 
 /*