开发者

Menu showing behind textboxes, labels. ASP.NET/C#

开发者 https://www.devze.com 2023-02-24 06:53 出处:网络
I have a web page with the main menu on the top. Then on individual pages, I have a table w开发者_运维技巧ith some textboxes, etc in the table. When I mouse hover above the menu to get the drop down,

I have a web page with the main menu on the top. Then on individual pages, I have a table w开发者_运维技巧ith some textboxes, etc in the table. When I mouse hover above the menu to get the drop down, it hides behind my textboxes, etc. Now it does this on some pages and not on others, and each page is basically contructed the same way. So I'm kind of lost.

Help?

Here is a pic of whats going on:

Menu showing behind textboxes, labels. ASP.NET/C#


Set the z-index of menu drop down div to 9999:

#menuDropDown {
    z-index: 9999;
}


I think you're talking about CSS z-index

have a read of this tutorial on the subject


I take a look on my example

Bring element to front/back

0

精彩评论

暂无评论...
验证码 换一张
取 消