html { margin:0; padding:0; background-color:#006600; border-style:solid; } /*Dark Green*/
body { margin:0; padding:0; background-color:#660000; border-style:dotted; } /*Dark Brown*/
<html>
<body>
test
</body>
</html>
Why does the background-color of html tag extend the full window but the border-style of the tag remain confined just outside the body box border.
Specifying the right amount of height and width should solve your problem.
Try it with appropriate values of height and width.
See this link : Understanding the HTML versus BODY Element in CSS
Hope you get some idea to your doubt.