DIV based menu system

liunx

Guest
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?<!--content-->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.<br />
<br />
Check out the Webreference article on the problem:<br />
<!-- m --><a class="postlink" href="http://www.webreference.com/dhtml/diner/seethru/indexNEW.html">http://www.webreference.com/dhtml/diner ... exNEW.html</a><!-- m --><br />
<br />
Adam<!--content-->Using z-index. If two or more divs overlap, the div with greater z-index is displayed on the top.<br />
<br />
I dont know if thats what you were asking.<!--content-->
 
Back
Top