I have a header
and content
divs in my html page. I want to set an image or map in my content that will be 100% but does not appear scroll bar. Fit the height of page with header and content.
<div class="head">
Header
</div>
<div class="content">
<img class="image" src="http://images.all-free-download.com/images/graphiclarge/daisy_pollen_flower_220533.jpg"/>
</div>
And my CSS is like this.
html, body {height: 100%}
.head{
border: 1px solid red;
height: 100px;
width: 100%;
}
.content{
border: 1px solid blue;
height: 100%;
width: 100%;
}
.image{
height: 100%;
width: 100%;
}