This question already has answers here:
Opacity of background-color, but not the text [duplicate]
(5 个回答)
7年前关闭。
我只想对 div 使用不透明度,而不是在文本上。我对 div 不透明度使用了一些代码,但它也显示了文本不透明度。我不想显示文本不透明度。我的代码在这里。
(5 个回答)
7年前关闭。
我只想对 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>
最佳答案
使用 background: rgba(0,0,0,.5);
删除 opacity: 0.6;
Sample Demo
关于html - 如何设置div不透明度而不是文本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21424525/
10-13 01:42