views:

243

answers:

2
<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.

+3  A: 

You may use rgba().

div#foo
{
    background: rgba(0, 0, 255, 0.3);
}
toscho
I wrote about using it in a backwards compatible fashion a while ago: http://dorward.me.uk/www/css/alpha-colour/
David Dorward
Thanks, I learned something! Unfortunately it doesn't seem to work in IE7.
Rob
@David thanks for the helpful link
Rob
Its a CSS 3 feature. IE8 was the first version of IE advertised as having a complete CSS 2.1 implementation. I wouldn't expect many CSS 3 features until version 9.
David Dorward
A: 

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.

Shawn Steward