From 1853cd5d39f5c57254554152b021188b2ae9b7a8 Mon Sep 17 00:00:00 2001 From: Jonathan Grover Date: Fri, 19 Apr 2013 11:10:57 -0400 Subject: [PATCH 1/2] disable html background #fff #bug solves issue of body background getting covered over --- normalize.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 6d24a3853..dbfc55e67 100644 --- a/normalize.css +++ b/normalize.css @@ -66,7 +66,7 @@ audio:not([controls]) { */ html { - background: #fff; /* 1 */ + /*background: #fff;*/ /* 1 */ color: #000; /* 2 */ font-family: sans-serif; /* 3 */ -ms-text-size-adjust: 100%; /* 4 */ From 48dce2d61232477b5499bbfd2c2449262b923f91 Mon Sep 17 00:00:00 2001 From: Jonathan Grover Date: Fri, 19 Apr 2013 13:23:56 -0400 Subject: [PATCH 2/2] moved html background and color properties to body instead --- normalize.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/normalize.css b/normalize.css index dbfc55e67..5e9399208 100644 --- a/normalize.css +++ b/normalize.css @@ -66,18 +66,18 @@ audio:not([controls]) { */ html { - /*background: #fff;*/ /* 1 */ - color: #000; /* 2 */ font-family: sans-serif; /* 3 */ -ms-text-size-adjust: 100%; /* 4 */ -webkit-text-size-adjust: 100%; /* 4 */ } /** - * Remove default margin. + * Remove default margin and system color scheme override. */ body { + background: #fff; /* 1 */ + color: #000; /* 2 */ margin: 0; }