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:
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
精彩评论