CSS半透明滤镜
转自http://hi.baidu.com/hfgyd2616/blog/item/4e4527a4881866f39052ee2b.html
CSS代码
.test{ background:#000; color:white; width:200px; position:absolute; left:10px; top:10px; filter: Alpha(opacity=10); -moz-opacity:.1; opacity:0.1; }
最后三句中,第一句是ie支持。第二三句是firefox支持的,但是版本不一样就有两种了,所以用时候把三句都加上就行了。