透明框上的不透明文本

时间:2012-11-30 00:11:09

标签: html css css3 text transparency

我想在透明框中包含不透明文字。这是一个代码示例:

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);
}

由于继承,文本始终显示为transluscent。有没有办法在我的透明盒子上找到漂亮的不透明文字?


非常感谢...我现在还添加了一个透明的.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及以下版本下工作。

1 个答案:

答案 0 :(得分:7)

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

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

Demo