我怎么能设置div不透明度而不是文字?

时间:2014-01-29 07:17:19

标签: html css opacity

我想仅对不在文本上的div使用不透明度。我使用一些代码为div不透明,但它也显示文本不透明度。我不想显示文字的不透明度。我的代码在这里。

.opabenner {
width:569px;
height:100px;
float:left;
position:absolute;
background:#06F;
top:587px;
filter:alpha(opacity=60); /* IE */
   -moz-opacity:0.6; /* Mozilla */
   opacity: 0.6; /* CSS3 */
z-index:9999;
  }
 .tit {
position: absolute;
font-size: 20px;
color: #FFF;
text-align: center;
padding: 5px;
width: 580px;
  }


  <div class="opabenner"> 
         <h1 class="tit">Step inside love in 2014 and join today for FREE!</h1>
    </div>

2 个答案:

答案 0 :(得分:2)

使用background: rgba(0,0,0,.5);删除opacity: 0.6;

Sample Demo

答案 1 :(得分:0)

将RGBA颜色用于容器

p{
    color: red;
}

#transparent{
    background-color: rgba(0, 0, 0, .1); /* 0.1 alpha = 10% opacity */
}

预览:http://jsfiddle.net/EfDZC/