css背景层透明文字不透明
文字
-------css------
.text{
position:relative; //重要使浮动
padding:10px 0 0 5px;
color:#fff;
z-index: 2;
}
.bg{
position: absolute; //重要使浮动
width:312px; //具体设置
height:40px; //具体设置
background:#000;
FILTER:alpha(opacity=70);
opacity:0.7;
-moz-opacity:0.7;
z-index: 1;
}
赞 (0)