How to create: Full-height elements

Learn how to use CSS to stretch elements to fit the entire height of the browser window.

Full-height Div

html, body {
  height: 100%;
}
.full-height {
  height: 100%;
}
<div class="full-height">..</div>

Try It Yourself