I wanted to expand my div all the way from top to bottom even thought I don't have enough elements inside my div.
I have set CSS like
#content{
margin-top: 10px;
padding: 15px;
display:block;
height:100%
background-color:red;
}
my html
<div id='content'>
just a little bit of contents here.
</div>
I want to see the red background all the way from top to bottom of the page.
How can I do this?
Thanks a lot