使文本背景透明但不使文本本身透明


86

所以我有一个问题。我环顾四周,环顾四周,但没有运气。我想使我的身体背景透明,但使文本不透明。现在,我保持相同的不透明度。这是我的代码:

@charset "utf-8";
body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    background-color: #42413C;
    margin: 0;
    padding: 0;
    color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
    opacity:1;
}
a img { 
    border: none;
}
a:link {
    color: #42413C;
    text-decoration: underline;
}
a:visited {
    color: #6E6C64;
    text-decoration: underline;
}
a:hover, a:active, a:focus {
    text-decoration: none;
}
.container {
    width: 750px;
    margin: 0 auto;
}
.content {
    padding:20px;
    width:710px;
    position:relative;
    background:#CCC;
    opacity: 0.5;
}
.fltrt {
    float: right;
    margin-left: 8px;
}
.fltlft { 
    float: left;
    margin-right: 8px;
}
.clearfloat { 
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.header {
    top:0%;
    width: 750px;
    height: 200px;
    background-image: url(images/header.png);
    background-repeat:no-repeat;
    background-position:center;
}
.navbar {
    height: 50px;
    width: 750px;
    position: relative;
    z-index: 2;
}
#bg {
    position: fixed;
    top: 25%;
    left: 15%;
    z-index: -1;
}
div {
display: block;
}

这是我的网站(单击链接不要在您的URL中键入“ tccraft.net”,它将带您到Facebook页面):http ://tccraft.net/index.php 谢谢!


1
是否可以复制透明背景,但不能
Adrien Be

Answers:


171

不要opacity为此使用,而是将背景设置为RGBA值,以仅使背景半透明。在您的情况下将是这样。

.content {
    padding:20px;
    width:710px;
    position:relative;
    background: rgb(204, 204, 204); /* Fallback for older browsers without RGBA-support */
    background: rgba(204, 204, 204, 0.5);
}

有关更多信息和CSS中rgba值的示例,请参见http://css-tricks.com/rgba-browser-support/


知道如何通过背景图片实现这一点吗?
Jujucat

对于背景图像,只需使用带有Alpha通道的PNG或WEBP作为图像。
Karl-JohanSjögren

18

对于完全透明的背景使用:

background: transparent;

否则,对于半透明的颜色填充,请使用:

background: rgba(255,255,255,0.5); // or hsla(0, 0%, 100%, 0.5)

值是:

background: rgba(red,green,blue,opacity); // or hsla(hue, saturation, lightness, opacity)

您也可以将rgba值用于渐变背景。

要在图像背景上获得透明度,只需在预先选择的图像编辑器中降低图像的不透明度即可。


2

opacity将使文本和背景都透明。而是使用半透明的背景色,rgba()例如,使用一个值。适用于IE8 +


0

如果您将RGBA用于现代浏览器,则不需要让旧版IE仅将给定颜色的非透明版本与RGB一起使用。

如果您不遵循纯CSS解决方案,尝试CSS3PIE。使用这种语法,您可以在旧版IE中看到与在现代浏览器中看到的完全相同的结果:

div {
    -pie-background: rgba(223,231,233,0.8);
    behavior: url(../PIE.htc);
}

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.