Height 100 Percent
by dcardoso
HTML
<div>content</div>
CSS
html, body {
height: 100%;
margin: 0;
}
div {
background-color: green;
height: 100%;
}
by dcardoso
<div>content</div>
html, body {
height: 100%;
margin: 0;
}
div {
background-color: green;
height: 100%;
}