So I have a div sandwich: three divs on top of one another. The slices of bread are both fixed-height due to background images. The meat is a 1px tall vertical repeater image. I need a way to expand the meat when overflow content from the top breadslice hits the bottom of the bottom breadslice. I figured a wrapper would be necessary for the meat and the bottom bread, but I'm not sure how to implement it.
Here's what I have thus far.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
#top {
position:relative;
height:100px;
background-color:pink;
width:460px;
word-wrap:break-word;
}
#wrapper {
position:relative;
}
#expand {
min-height:100%;
height:auto;
background-color:#EEEFFF;
}
#bottom {
height:100px;
background-color:#EEEEEE;
}
div.clear{
position:absolute;
width:100%;
clear:both;
height:1px;
overflow:hidden;
border:solid orange;
}
</style>
<title></title>
</head>
<body>
<div id="top">
a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a<br/>a
</div>
<div id="wrapper">
<div id="expand"></div>
<div id="bottom"></div>
<div class="clear"></div>
</div>
</body>
</html>
I need a way to make top's content hit against the "clear" in the bottom wrapper and move the wrapper down.