我正在尝试在 css 中为 IE 创建不透明背景颜色
css 过滤器会将元素更改为不透明度为 80,我只希望背景颜色是透明的。
.element{
//for Chrome and FF
'background-color': rgba(0, 0, 0, 0.8)
//for IE..but it will make entire element having 80 opacity instead of the background-color only....
filter:alpha(opacity=80)
}
谢谢您的帮助。