I have 2 divs - one semi transparent bg div and one opaque one over it. Here are the CSS snippets. ... Short version - the bg div will not stretch 100% of the way in FF or IE7 though works in IE8, IE6, Safari (Windows), and Chrome. I'm pulling my hair out because I have the html, body, parent divs etc all streching 100% of the height. PLEASE HELP!
#BACKROUND_DIV{
position:absolute;
top:160px;
left: 250px;
margin:0;
float:left;
background-color:#06064a;
filter: alpha(opacity=50);
-moz-opacity: 0.5;
opacity: 0.5;
width: 68%;
_width: 100%; /* stupid IE */
min-width: 630px;
min-height: 100%!important;
height: 100%;
padding: 0px;
z-index:2;
display: table;
border:#F00 thin solid;
}
#CONTENT_DIV{
width: 100%;
background:transparent;
color:#FFF;
padding: 10px;
z-index:3;
top: 0;
position: relative;
margin: 0 auto;
_height: 100%;
}