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

I using something similar to the following code:

<div style="opacity:0.4; background-image:url(...);">
 <div style="opacity:1.0;">
  Text
 </div>
</div>

I expected this to make the background have an opacity of 0.4 and the text to have 100% opacity. Instead they both have an opacity of 0.4.

Please help.

share|improve this question
possible duplicate of CSS: semi-transparent background, but not text – Ben May 2 '12 at 23:08
4  
this has been asked so many times.. – Ben May 2 '12 at 23:08

3 Answers

up vote 29 down vote accepted

Children inherit opacity. It'd be weird and inconvenient if they didn't.

You can use a translucent png for your background image, or use an RGBa (a for alpha) color for your background color.

Example, 50% faded black background:

<div style="background-color:rgba(0, 0, 0, 0.5)">
   <div>
      Text
   </div>
</div>
share|improve this answer
A more in-depth tutorial can be found here: robertnyman.com/2010/01/11/… – Iain Fraser Mar 14 at 0:56

This is because the inner div has 100% of the opacity of the div it is nested in (which has 40% opacity).

In order to circumvent it there are a few things you could do.

you could create two separate divs like so:

<div id="background"></div>
<div id="bContent"></div>

set your desired css opacity and other properties for hte background and utilize the z-index property (z-index) to style and position the bContent div. With this you can place the div overtope of the background div without having it's opacity mucked with.


Another option is to RGBa. This will allow you to nest your divs and still achieve div specific opacity.


The last option is to simply make a semi transparent .png image of the color you want in your desired image editor of choice, set the background-image property to the url of the image and then you won't have to worry about mucking about with the css and losing the capability and organization of a nested div structure.

share|improve this answer

I would do something like this

<div id="container">
  <div id="text">
    <p>text yay!</p>
  </div>
  <div id="bgd"></div>
</div>

CSS:

#container{
    position:relative;
}

#bgd{
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-image:(something.png);
    opacity:.4;
}

Should work. Not the most elegant, though. This is assuming you are required to have a semi-transparent image btw, and not a color (which you should just use rgba for). Also assumed is that you can't just alter the opacity of the image beforehand in photoshop.

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.