CSS how to set div translucent effects:
Setting the transparency of the element is used in many applications, the following describes how to set an element to be translucent, the other transparent effect of their own extension can be.
The code example is as follows:
<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><Metaname= "Author"content= "http://www.softwhy.com/" /><title>Ant Tribe</title><styletype= "Text/css">Div{Filter:Alpha (OPACITY=50);Opacity:0.5;width:100px;Height:100px;Background-color:Green;} </style></Head><Body><Div></Div></Body></HTML>
The Opacity property is supported by the standard browser, but the IE8 and IE8 browsers do not support this property, so it is compatible with Filter:alpha (OPACITY=50), and the value of opacity is 0-1, but the value under filter is 0-100. The Opacity property can be found in the Opacity Properties section of CSS .
The original address is: http://www.softwhy.com/forum.php?mod=viewthread&tid=9651
For more information, refer to: http://www.softwhy.com/divcss/
CSS how to set div translucency effect