If I remove the border-radius property, Chrome displays the whole background in gray. When I add border-radius, the page background turns white. This is only Chrome/webkit specific. The page works fine with gray background everywhere in Firefox/Opera/IE. Any ideas why?
If I remove the border-radius property, Chrome displays the whole background in gray. When
Share
Interesting problem. @Zlatev is definitely right, you should probably your styles to a
<div>within the<html>and<body>tags.I tried playing around with it, and I found that if you put the background on the
<body>tag it still overflows to fill the entire page, however if you specify the background for the<body>tag and then declare the<html>tag to have a different background (say, white), it look like you were hoping it would.