tags:

views:

1247

answers:

6

I'm working on an application with a map and there is a div in the corner with some stuff in it. You can click on this map to bring up some information in a little window. The window is, in some cases, being covered by the div in the corner.

I want the opposite effect (window covers div). I figured this would simply be a z-index issue but I'm unable to get it to work. This is with IE7 and from reading up a bit it seems like z-index won't work unless it's inside of an element that is positioned.

The elements seem to be positioned properly to get the z-index to work right but I'm having little luck. I've played around with adding styling via Firebug but haven't had any luck in getting anything to change. The window really is just two divs one absolutely positioned one and a relative one inside of it.

Is the z-index the only thing that could be the problem here or is there something else I don't know about?

Are there any other methods to achieve the effect I want? I cannot simply hide the div via jquery or something because part of it should be visible from behind the window that opens on the map.

+4  A: 

You are hitting the stacking context bug

http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html

Every positioned div in IE will create a new stacking context and prevent z-index from diferent stacking contexts to come on top of others.

The solution is to have the window you want on top up in the tree (into the body for example) and z-index value grater than z-index of all parents of the other div covering your window.

Extensive information to understand the problem here: http://richa.avasthi.name/blogs/tepumpkin/2008/01/11/ie7-lessons-learned/

Miquel
Learn something new every day I suppose. Thanks.
Carter
A: 

positioning and negative margins is the only way to get elements to overlap that i know of. z-index is just used to explicitly tell the browser how to layer the elements.

as to your problem, IE requires the container elements and/or elements that you are overlapping to have position:relative; or position:absolute; for z-index to work properly. When someone say positioning they're usually implying having the position property set in CSS. Also when working with z-index make sure that the overlapping elementa are at the same level with each other.

Hope this helps

Darko Z
A: 

As hinted by the other answers, position:relative and position:absolute reset the "stacking-context" in IE.

Eric Wendelin
A: 

If you want a lazier answer you could use javascript and hide the div when you click on the map, and show it when you close the map.

You will have to do this with any selects on the page anyway because in ie they don't work with z-index.

thirsty93
A: 

I ran into this same issue a couple days ago and found the negative margin as suggested by Darko Z worked great. (My rep isn't good enough yet to vote for Darko)

I wrote a quick post on it.

http://www.swards.net/2009/03/layering-html-elements-without-using.html

A: 

Quite simply, the order of the elements in your HTML file will determine stacking order. If you want an element to be above another then make sure it comes later in the HTML.

You can only swap the stacking order on elements that are all in the same containing element. For example if you have two divs and they both contain 3 images you cannot make images from the second div go below images from the first div.

You need to plan your HTML ahead if you need complex stacking orders.

Matthew James Taylor