It can be fixed with adding position relative to the element most of the time. This is because z-index is not an absolute measurement. It is possible for an element with z-index: 1000 to be behind an element with z-index: 1 if elements belong to different stacking contexts.
You can see more details information about z-index at www.w3.org.
This is now the fix look like
.navigation .submenuReference Links:
{
z-index: 100;
position: relative;
}
No comments:
Post a Comment