I have a div like so:
<div class="background"></div>
and I am trying to give it 100% height so the background color is the whole div. Here is my CSS:
html, body {
  height: 100%;
}
.background {
  background-color: #1D3862;
  clear: both;
  height: 100%;
}
but its not working...what can I do to fix this ?
 
    