当前位置:Gxlcms > css > CSS跨浏览器透明度

CSS跨浏览器透明度

时间:2021-07-01 10:21:17 帮助过:19人阅读

selector {
    filter: alpha(opacity=50); /* internet explorer */
    -khtml-opacity: 0.5;      /* khtml, old safari */
    -moz-opacity: 0.5;       /* mozilla, netscape */
    opacity: 0.5;           /* fx, safari, opera */
    }

人气教程排行