How would you implement something like this in CSS? And yes, I definitely need the iframe.
http://i.stack.imgur.com/ReZ5c.png
The iframe should have a fixed position:
- top: 160px
- right, bottom, left: 10px
The image at the top should have a 100% width and a 150px height.
Sorry for not posting my first ideas, I tried this:
CSS
html,body {
margin: 0;
padding: 0;
height: 100%;
}
#headerImage {
height: 150px;
width: 100%;
border: 1px solid black;
}
#applicationFrame {
border: 1px solid black;
position: absolute;
top: 160px;
left: 10px;
bottom: 10px;
right: 10px;
width: 100%;
height: auto;
min-height: 100%;
}
HTML
<img id="headerImage" src="" />
<iframe id="applicationFrame" src="http://www.google.de">
</iframe>