I have the following html page:
<!DOCTYPE html>
<html>
<head>
<style>
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
height: 100%;
}
.box {
height: 100%;
background-color: brown;
}
</style>
</head>
<body>
<div class="box">
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</div>
</body>
</html>
As you can see, there a distance on top, although body
is set to:
margin: 0;
padding: 0;