Click to See Complete Forum and Search --> : DIV based menu system


Geat
02-27-2003, 10:30 AM
I've implemented a navigation system where the menus are made up of DIVs. How do I make the DIV appear in front of any form controls that are in the main document? Is it possible?

AdamGundry
02-27-2003, 10:53 AM
It depends on which form controls, and which browser; some obey the rules, some don't. You should be able to use the z-index CSS property, but some controls will always appear on top.

Check out the Webreference article on the problem:
http://www.webreference.com/dhtml/diner/seethru/indexNEW.html

Adam

nkaisare
02-27-2003, 10:54 AM
Using z-index. If two or more divs overlap, the div with greater z-index is displayed on the top.

I dont know if thats what you were asking.