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)
}
助けてくれてありがとう。