【CSS背景蒙版兼容IE】
2017-06-04 本文已影响15人
魔_术师
CSS背景蒙版兼容IE
蒙版
background-color: rgba(255,255,255,0.35);
蒙版兼容IE
background: #fff;
opacity: 0.35; //谷歌等现代浏览器
filter: alpha(opacity=35); //兼容IE浏览器
蒙版
background-color: rgba(255,255,255,0.35);
蒙版兼容IE
background: #fff;
opacity: 0.35; //谷歌等现代浏览器
filter: alpha(opacity=35); //兼容IE浏览器