2

我想在我的透明框中有不透明的文本。这是一个代码示例:

HTML:

<div id="Transparent_Box">                                          
    <div class="text">                                          
    <h1>Some opaque text</h1>
    </div>  
</div>

CSS:

#Transparent_box {      
    url(../images/header-bg.png);
    background:url(../images/header-bg.png) repeat-x\0/; 
    background-position:center bottom, left top;
    background-repeat:repeat-x;
    overflow:hidden;
    background-color:#FFF;
    opacity: 0.6;
    filter: alpha(opacity=60);  

}

.text {
float:left;
margin-top:30px;
width:490px;
margin-left:20px;
opacity: 1;
filter: alpha(opacity=100);
}

.text h1 {
    font-weight:900;
    color:#FFF;
    line-height:34px;
    margin-top:8px;
    opacity: 1;
    filter: alpha(opacity=100);
}

由于继承,文本总是显示为半透明的。有没有办法在我的透明框上获得漂亮的不透明文本?


谢谢,正是它......我现在还添加了一个透明的背景.png它看起来像这样:

background-image:url(../images/header-shadow.png), url(../images/header-bg.png);
background:url(../images/header-bg.png) repeat-x\0/; 
background-position:center bottom, left top;
background-repeat:repeat-x;
background-color: rgba(0,0,0,0)

这应该在 IE8 及以下版本下工作。

4

1 回答 1

7

使用透明背景颜色而不是不透明度。不需要额外的标记。

div {
  background: rgba(0,0,0,.5)
}

演示

于 2012-11-30T00:13:02.987 回答