DIV半透明

来源:互联网 发布:手机百度网盘网络失败 编辑:程序博客网 时间:2024/05/01 23:08

DIV背景半透明,DIV中的字不半透明 filter的层一定要有width属性,否则filter无效。

<div style="filter:alpha(opacity=50);background:#ffffff;width:600;"><span style="color:yellow">图层背景半透明,字体颜色也半透明</span></div>
<div style="filter:alpha(opacity=50);background:#ffffff;width:600"><span style="position:relative;color:yellow">图层背景半透明,字体颜色不半透明</span></div>