vote up 1 vote down star
1

How can i only impact the opacity of a parent element and not its children

eg,

i want signup_backdrop opacity to be set at 0.5 but it's child element signup_box i don't want to have any opacity at all but it will apply the opacity set in signup_backdrop as inherited.

flag

2 Answers

vote up 5 vote down check

You can't. You'll need to super-impose (positioning, and z-index) the children over the parent, meaning they will no longer be children. That, or use transparent png's for the parent background, and set opacity for any siblings of the fully-opaque child.

*untested, but should be good.

.signup_backdrop {
  position:fixed;
  top:0; left:0;
  background:#333333;
  width:100%; height:100%;
  z-index:10;
}

.signup_box {
  position:fixed;
  top:25%; left:25%;
  background:#ffffff;
  width:50%; height:50%;
  z-index:20;
}

<div class="signup_box">
  <p>Hello World</p>
</div>
<div class="signup_backdrop"></div>
link|flag
This is only half right. See my answer for more details. – the_drow Jul 30 at 11:42
i've tried the above Jonathan, it works perfectly thanks... now we just need to protest until IE decides that it'll incorporate the property lol – Neil Hickman Jul 30 at 12:05
Incororate what property? – Jonathan Sampson Jul 30 at 12:06
vote up 1 vote down

In CSS 3 you have rbga() to add a color and opacity to a certain element.
It is so far implemented in Safari 3 and Firefox 3 only.
For other browsers use the tricks from Jonathan Sampson's answer.

link|flag
And this allows a child to have an opacity different than its parent? – Jonathan Sampson Jul 30 at 11:48
Yes. I have tested it. – the_drow Jul 30 at 12:25

Your Answer

Get an OpenID
or

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