So I'm making a website for a friend of mine who's a lawyer. He gave me a reference to another site the layout of which he liked, and asked me if I could "make his similar to that one". The reference site is probably 10 years old and done with 5-levels-deep nested tables so I decided to use CSS like a good web developer. Now the problem is that he wants a two-column layout with a header, but one in which one column overlaps the header and one doesn't. I laid the site out like this:
<html style="min-height: 100%">
<head>...</head>
<body style="min-height: 100%">
<div id="left" style="height: 100% !important">
...stuff...
</div>
<div id="header">
...stuff...
</div>
<div id="right" style="height: 100% !important">
...stuff...
</div>
</body></html>
Everything uses relative positioning and percentage or auto height/width. Now the main problem is that both #left and #right, just as expected, have a height that is 100% of the page. The problem is that the #right div is pushed down bu the #header div that's right on top of it, so there's some extra room at the bottom of the page that is occupied only by the #right div. Is there a way around this? I've considered changing the style of #header to have a percentage height and subtracting that from the height of #right, but that seems kludgy to me (on top of which it'll probably break IE).
Thanks in advance!