CSS 不透明度和子元素
<style type="text/css">
div#foo {
background: #0000ff;
width: 200px;
height: 200px;
opacity: 0.30;
filter: alpha(opacity = 30);
}
div#foo>div {
color: black;
opacity:1;
filter: alpha(opacity = 100);
}
</style>
<div id="foo">
<div>Lorem</div>
<div>ipsum</div>
<div>dolor</div>
</div>
在上面的示例中,div#foo
的不透明度被子元素继承,导致文本变得几乎不可读。我认为说它是继承的是错误的,不透明度应用于父 div 并且子元素是其中的一部分,因此尝试为子元素覆盖它是行不通的,因为从技术上讲它们是不透明的。
在这种情况下,我通常只使用 alpha png 背景图像,但今天我想知道是否有更好的方法来使 div 的背景半透明而不影响内容。
<style type="text/css">
div#foo {
background: #0000ff;
width: 200px;
height: 200px;
opacity: 0.30;
filter: alpha(opacity = 30);
}
div#foo>div {
color: black;
opacity:1;
filter: alpha(opacity = 100);
}
</style>
<div id="foo">
<div>Lorem</div>
<div>ipsum</div>
<div>dolor</div>
</div>
In the above example, the opacity of div#foo
is inherited by child elements, causing the text to become nearly unreadable. I suppose it's wrong to say it is inherited, the opacity is applied to the parent div and the children are part of that, so attempting to override it for the child elements doesn't work because technically they are opaque.
I typically just use an alpha png background image in such cases, but today i'm wondering if there's a better way to make a background of a div semi-transparent without affecting the contents.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用rgba()。
要使其在旧版 Internet Explorer 中工作,请使用 CSS PIE。有一些限制,但这些限制是以向后兼容的方式处理的: RGB 值将被正确渲染,并且不透明度将被忽略。
You may use rgba().
To make it work in old Internet Explorers use CSS PIE. There are some limitations, but those are handled in a backwards compatible way: the RGB value will be rendered correctly and the opacity will be ignored.
最好的方法是将透明 png 设置为背景..
The best way is setting transparent png to background..
如果您使用不透明度,则必须将它们放在单独的 DIV 中,然后将它们排列在一起。背景 DIV 将具有较低的不透明度,前景 DIV 的内容将具有 100% 的不透明度。
If you use opacity, you'd have to put them in separate DIV's and then line them up together. The background DIV would have the lower opacity, and foreground DIV would have your content with 100% opacity.