The problem im having is when contentWrapper overflows i want the leftbar to overflow with it on a standard 100% height both divs fill to the bottom in ie and ff, however once content overflows the black bar in ie overflows too which is the result i want and in ff it doesnt
In the design the left bar has shadow edging which i want to flow all the way to the footer
I can see how that works but where would i put my content section as i put a div in next the leftbar and im still getting a gap when that div overflows
nwilloughby
ASKER
<html><head> <link href="layout.css" rel="stylesheet" type="text/css" /></head><body> <div id="container"> <div id="leftbar">This is a left bar going all the way down....</div> <div id="content">content<br>content<br>content<br>content<br>content<br>content<br> content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br> content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br> content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br> content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br> content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br> content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br> content<br>content<br>content<br>content<br>content<br>content<br>content<br>content<br></div> <div id="footer"> fOOTER </div> </div></body></html>
Thanks guys for your comments, to solve the issue i used a 1px image spanning the length of the left div and content div to create the illusion of the left div overflowing to the footer
I give the container a fixed height say 800px and then give the leftbar a 100% height.
Sample code below
MD
Open in new window