I have a dim overlay, and want certain elements to poke through. It seems a higher z-index is not enough: I must set position: relative/absolute. Is there any way to avoid this? See my basic example here: http://jsfiddle.net/hSYU2/. As soon as you remove the position, the circle disappears.

An explanation of the mechanics would be swell.

link|improve this question

i am just trying to figure out what you are trying to do here. what do you mean by 'poke through'? do you want it to end up something like this jsfiddle.net? – Beno Jul 19 '11 at 23:12
Yes, why does that work and mine does not? – ash Jul 20 '11 at 8:08
in your first example, the reason the circle disappears is because it is white. so it is a white circle on a white background with a half opaque overlay. Look at this one jsfiddle.net/hSYU2/4 - it is the same as your first one with a black circle without the positioning – Beno Jul 20 '11 at 8:25
Yes, but that black circle is partially obscured by the opacity: 0.5 of the #dim. I want it to be as if there were no opacity overlay on it. – ash Jul 20 '11 at 8:26
right, so you want my other solution. In that one, I just placed the #circle div inside the #dim div and removed the positioning – Beno Jul 20 '11 at 8:28
show 2 more comments
feedback

1 Answer

up vote 2 down vote accepted

From CSS2 specification,

'z-index'  
     Value:         auto | <integer> | inherit
     Initial:       auto
     Applies to:    positioned elements  

z-index only applies to positioned elements (i.e: fixed, absolute or relative), so no, there is no way to avoid it.

link|improve this answer
You are correct, sir. – ash Jul 19 '11 at 23:11
feedback

Your Answer

 
or
required, but never shown

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