I have been reading all the 100% div height discussions and I can't find a simple solution.
Here is my code:
#mother {width: 100%; margin: 0 auto; z-index:1;}
#stripe_wrap {width: 1053px; min-height:500px; margin: 0 auto; background:lime; }
#stripe1 {width: 39px; min-height:500px; margin: 0px 0px 0px 0px;
background:#000;float:left}
#stripe2 {width: 39px; min-height:500px; margin: 0px 0px 0px 0px;
background:#000;float:right }
<div id="mother" style="overflow-x: hidden;">
<div id="stripe_wrap">
<div id="stripe1"></div>
<div id="stripe2"></div>
</div>
</div>
