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.
http://jsfiddle.net/WTELW/4/
以下在 JSFiddle 上运行良好,但在浏览器中似乎无法正常运行(尝试复制粘贴到记事本)。
我已经尝试为图层设置 z-index,但似乎并没有这样做。我可以看到图层定位正确,但仍然隐藏。
overflow: hidden从以下内容中删除后,下拉菜单出现在我面前:
overflow: hidden
#header { width: 1024px; position: relative; overflow: hidden; margin-right: auto; margin-left: auto; }
我认为正在发生的事情是您ul在标题中有(下拉菜单)。由于ul扩展的内容在 header 之外div,并且您已overflow设置为hidden,因此您无法再看到下拉列表,因为它被隐藏了。
ul
div
overflow
hidden