<style>
/*透明通道方法*/
#p1{
width: 100px;height: 100px;
background: green;
opacity:0.3;
filter:alpha(opacity:30);/*兼容低版本IE*/
}
/*css3方法*/
background-color:rgba(255,255,255,0.3);
</style>
<style>
/*透明通道方法*/
#p1{
width: 100px;height: 100px;
background: green;
opacity:0.3;
filter:alpha(opacity:30);/*兼容低版本IE*/
}
/*css3方法*/
background-color:rgba(255,255,255,0.3);
</style>
阅读量: 1032