CSS height 100% - step 2

by Julien Roche

HTML

<div class="my-element">My element</div>

CSS

html,
body {
   height: 100%;
}

.my-element {
   background-color: orange;
   color: white;
   height: 100%;
}