CSS- transparent background color compatible

 
 

 IE does not support the use of a transparent background color fileter

div{
    backgournd: #666;
    filter:alpha(opacity=50);   
    -moz-opacity:0.5;
    opacity:0.5;
}

 

Guess you like

Origin www.cnblogs.com/yangchin9/p/11279776.html