当前位置: 代码迷 >> 高性能WEB开发 >> 如何让div透明
  详细解决方案

如何让div透明

热度:222   发布时间:2012-03-18 13:55:39.0
怎么让div透明
在body中有一张背景图片。我想要能够看到背景图片。想让body里的div透明。

------解决方案--------------------
CSS code

#shadow{
   position:absolute; 
   left:0;
   top:0;
   width:100%;
   height:100%;
   background-color:#0060C0;
   filter:alpha(opacity=20);
}

------解决方案--------------------
滤镜属性filter
------解决方案--------------------
分浏览器,注意非IE要价opacity = 20
------解决方案--------------------
加个阴影效果吧
  相关解决方案