|
I have this div
#content {
z-index:100;
width:698px;
min-height:300px;
padding:0px;
background-color:#FFF;
-moz-opacity:0.6;
filter:alpha(opacity=60);
margin:0px;
float:left;
}
That is just a 60% white background.
Then i have another div with just text on it with this
#text {
z-index:101;
width:698px;
height:auto;
padding:0px;
margin:0px;
background-color:inherit;
}
But it is still getting the opacity properties from the content div.
Any ideas?
Tim
}
Last edited by LadynRed; 10-05-2007 at 03:05 PM..
|