Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚在这里安装了一个 CSS 下拉菜单:http: //ilke.evaistanbul.com.tr/
菜单有子菜单。但它们是不可见的。它们似乎被一些上层元素覆盖:
鼠标悬停在菜单上:
菜单的正常状态:
子菜单不可见的原因是什么?
当您删除 .lavaLampBottomStyle 的溢出:隐藏时,它将显示。
在你的 CSS 上,
#cssmenu .has-sub ul { display: none; }
你需要这样display:block-
display:block
#cssmenu .has-sub:hover ul{ display:block; }