Something like that?
body {
padding:0;margin:0;
}
position: absolute;
background: orange;
top:0;
left:0;
width: 100%;
height: 100px;
}
position: absolute;
background: orange;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
}
position: absolute;
top: 100px;
bottom: 100px;
left: 0;
width: 100%;
}
img {
height:100%;
width: auto;
}
<div id="header">header</div>
<div id="middle">
<img src="images/myImage.jpg" />
</div>
<div id="footer">footer</div>
source
share