Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i have popup menu ,where we mouse over on menu popup window will come,But
In Another div tag, which has dropdownlist control.whish is overlappig the
popup window.
pls solve my prob.
Thanks & Reagards
venkatesh
Posted

1 solution

Use z-index & position property in CSS for Menu Control. Please post your relevant code where you face the trouble/issue.

The z-index property specifies the stack order of an element.

An element with greater stack order is always in front of an element with a lower stack order.

Note: z-index only works on positioned elements (position:absolute, position:relative, or position:fixed)

CSS
.mnuMenu
{
position:absolute;
z-index:1;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900