Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to set the opacity of a background image without affecting the opacity of child elements?

Example

All links in the footer need a custom bullet (background image) and the opacity of the custom bullet should be 50%.

html

<div id="footer">
    <ul>
        <li><a href="#">Link 1</a></li>
        <li><a href="#">Link 2</a></li>
        <li><a href="#">Link 3</a></li>
        <li><a href="#">Link 4</a></li>
        <li><a href="#">Link 5</a></li>
    </ul>
</div>  

css

#footer ul li {
    background: url(/images/arrow.png) no-repeat 0 50%;
}  

What I've Tried

I tried setting the opacity of the list items to 50%, but then the opacity of the link text is also 50% - and there doesn't seem to be a way to reset the opacity of child elements:

#footer ul li {
    background: url(/images/arrow.png) no-repeat 0 50%;
    /* will also set the opacity of the link text */        
    opacity: 0.5;
}

I also tried using rgba, but that doesn't have any affect on the background image:

#footer ul li {
    /* rgba doesn't apply to the background image */
    background: rgba(255, 255, 255, 0.5) url(/images/arrow.png) no-repeat 0 50%;
}
share|improve this question

9 Answers

This will work with every browser

div {
 -khtml-opacity:.50; 
 -moz-opacity:.50; 
 -ms-filter:"alpha(opacity=50)";
  filter:alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
  opacity:.50; 
}

If you don't want transparency to affect the entire container and its children, check this workaround. You must have an absolutely positioned child with a relatively positioned parent.

Check demo at http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/

share|improve this answer
I think you need to change the ” quotes in the above code to " in order for it to work when straight copy-pasted. – nsantorello Feb 6 '12 at 16:44
4  
is this answer still the best solution people have found to the problem of: "how to make a child element not inherit the parent element's CSS opacity value"? I need the child to really be a child.. and in the document flow... and also do not want to bring in javascript/flash for this; prefer pure CSS. – govinda May 14 '12 at 19:58
I have 50% opaque parent <li>'s containing child images which I want 100% opaque. Setting the <li> to position:relative; and the img to position:absolute; does NOT allow me to override the inherited opacity on the img, and I can't use absolute positioning for the <li>'s themselves (that's a mess ;-). In Javascript I tried imgs[i].style.opacity = '1';, but that also does not work to override the inherited opacity. If I understand correctly, I also can't use rgba because I need to affect the imgs themselves, not just a background color. Anyone have a recommendation for me? – govinda May 14 '12 at 21:11
1  
Doesn't work in Lynx :P – alex Jul 31 '12 at 5:24
3  
@alex you have to add -lynx-opacity: 0.5. Also, make sure you adjust the volume level of the background image to 50% in the aural stylesheet (div{volume:50%}) for best accessibility of screen-reader users. – Camilo Martin Sep 1 '12 at 14:34

If you are using the image as a bullet, you might consider the :before pseudo class.

#footer ul li {
}

#footer ul li:before {
    content: url(/images/arrow.png);
    filter:alpha(opacity=50);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
    opacity:.50;
}
share|improve this answer
2  
Filter is only an IE solution – Hussein Feb 14 '11 at 21:48

take your image into photoshop, turn down the opacity, save it as a .png and use that instead.

share|improve this answer
5  
Hmm... i just downvoted, but look at this accepted answer: stackoverflow.com/a/6502295/131809 upvoted 10 times, and pretty much identical. – alexjamesbrown Nov 7 '12 at 15:56
2  
This is a good option, no idea why so many downvotes. If I could upvote this twice I would. A child element of a partially opaque parent element is going to be partially opaque, and should be. All "workarounds" are bugs that should eventually be fixed. – RobW Nov 28 '12 at 21:17
It is not a "good" option as it fires +1 http request and needs to load additional data. – mystrdat Dec 11 '12 at 15:44
2  
@mystrdat You're already downloading the image, this isn't an extra request. – brad Feb 22 at 4:47
1  
@mystrdat But he is already downloading the arrow image. You haven't provided a non-image solution, so that was my point. He's already downloading the arrow image, it might as well come as needed, which would not be an extra request. I'm not understanding where you're coming from. – brad Mar 2 at 21:17
show 3 more comments

To really fine-tune things, I recommend placing the appropriate selections in browser-targeting wrappers. This was the only thing that worked for me when I could not get IE7 and IE8 to "play nicely with others" (as I am currently working for a software company who continues to support them).

/* color or background image for all browsers, of course */            
#myBackground {
    background-color:#666; 
}
/* target chrome & safari without disrupting IE7-8 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    #myBackground {
        -khtml-opacity:.50; 
        opacity:.50;
    }
}
/* target firefox without disrupting IE */
@-moz-document url-prefix() {
    #myBackground {
        -moz-opacity:.50;
        opacity:0.5;
    }
}
/* and IE last so it doesn't blow up */
#myBackground {
    opacity:.50;
    filter:alpha(opacity=50);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
}

I may have redundancies in the above code -- if anyone wishes to clean it up further, feel free!

share|improve this answer

Just to add to the above..you can use the alpha channel with the new color attributes eg. rgba(0,0,0,0) ok so this is black but with zero opacity so as a parent it will not affect the child. This only works on Chrome, FF, Safari and....I thin O.

convert your hex colours to RGBA

share|improve this answer
1  
This won't work with the background-image as requested by the OP. – Torsten Walter Aug 2 '12 at 23:41

If you have to set the opacity only to the bullet, why don't you set the alpha channel directly into the image? By the way I don't think there is a way to set the opacity to a background image via css without changing the opacity of the whole element (and its children too).

share|improve this answer

I found a pretty good and simple tutorial about this issue. I think it works great (and though it supports IE, I just tell my clients to use other browsers):

CSS background transparency without affecting child elements, through RGBa and filters

From there you can add gradient support, etc.

share|improve this answer

Why has nobody mentioned RBGa... This question is screaming out for this answer... Rather than using silly hacks and nested elements inside a container just use RGBa on the desired div

.alpha60 {
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
    background: rgba(0, 0, 0, 0.6);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

Sadly it doesn't support hex color codes. But i know this will make a lot of people happy.

share|improve this answer
2  
Because it doesn't affect images. The question already states he's tried RGBa – egr103 Jan 30 at 18:43

The "filter" property, needs an integer for percentage of opacity instead of double, in order to work for IE7/8.

filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);

P.S.: I post this as an answer, since SO, needs at least 6 changed characters for an edit.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.