View Full Version : div help!


tkdgurl927
10-31-2005, 02:33 AM
hi...i need to know how to put the css part below into the div...how do i make my tables with an opacity in my div layer is what i'm saying? thanks


{
background-color: FFFFFF;
filter: alpha(opacity=80);
-moz-opacity: 0.9;
opacity: 0.9;
-khtml-opacity: 0.9;
}



<div id="Layer1" style="position: absolute; width: 407; z-index: 1; left:80; top:383; height:325">

<TABLE width="318" height="323"><tr><td height="319" width="312">

<!-- Main TEXT -->





</td></tr></TABLE></div>

Zohar Amihud
10-31-2005, 06:12 PM
This is the alpha filter:

filter:progid:DXImageTransform.Microsoft.Alpha(opa city=value, style=value)

The opacity value from 0 to 100
The style value from 0 to 3
There are more parameters...

Merike
10-31-2005, 06:20 PM
add style attribute to the table?

<TABLE width="318" height="323" style="background-color: FFFFFF;
filter: alpha(opacity=80);
-moz-opacity: 0.9;
opacity: 0.9;
-khtml-opacity: 0.9;">