1

i am having a pure css drop down menu that works fine.

My problem is that behind the menu that opens i have links that use a .disable class with opacity 40% because they are not active.

When mouse over the menu (with link behind with opacity) the drop menu disappear and kind of focus on link with opacity.

If i remove the class that has opacity works fine.

Any ideas why and resolve it

Thanks

4

1 回答 1

0

你能发布一些代码吗?

我假设您的下拉列表是父 UL LI 中的 UL。我会尝试添加位置:相对,所以 CSS 看起来像这样:

ul li ul {
position: relative;
}

它有效吗?

于 2011-02-15T10:52:57.187 回答