Hard Bug: body bg color propagates to html

by podlipensky

HTML

<html>
  <body>
    <p>This is a paragraph</p>
  </body>
</html>

CSS

html {
    background-color: yellow; /*if remove it, green background will propagate to html */
}
body { /* either body shrinking because of float or because of specific widht/height will show you exact size of body */
    float: left;
    _width: 100px; 
    _height: 100px;
    background-color: green;
}