[滤镜]的firefox兼容问题

滤镜

div.transp { /* make the div translucent */
   opacity: 0.6;                /* Firefox, Safari(WebKit), Opera)
   filter: "alpha(opacity=60)"; /* IE 8 */
   filter: alpha(opacity=60);   /* IE 4-7 */
   zoom: 1;                     /* needed in IE up to version 7, or set width or height to trigger "hasLayout" */
}

不存在万能的方法,因为各浏览器厂商都不可能遵循标准,都试图自己扩展功能,以垄断市场。
原文地址:https://www.cnblogs.com/tangge/p/1999887.html