css透明度的兼容性写法:
1 filter: Alpha(opacity=10); /* IE */ 2 -moz-opacity:0.1; /* 兼容老版本的FF */ 3 opacity:0.1; /* 现代浏览器 */
比较常用,前端开发人员必须记住。