假设背景为黑色,70%半透明,对需要半透明的层用如下CSS background-color: #000000; /* background color for IE */ filter: alpha(opacity=70); /* opacity filter for IE */ background-color: rgba(0, 0, 0, 0.7); /* for other browsers */ 如果只做了这一步,在IE中子元素也会被用上滤镜而透明,所以对于不需要透明的子元素们需要改变