我创建了一个CSS下拉菜单,但是当它下降时,它会被内容重叠,并且呈现无用。
我该如何解决这个问题?
代码
问题解决了...谢谢......
答案 0 :(得分:2)
将导航的z-index设置为高于您的内容,问题就会消失。为了使z-index在所有浏览器中正常工作,带有z-index的元素也有一个位置:relative或position:absolute。
ul.dropdown { position: relative; border-radius:10px; z-index:9999}
#content{position:relative; z-index:100} /* #content should be whatever your content div is */
答案 1 :(得分:2)
尝试更改下拉菜单的z-index http://www.w3schools.com/Css/pr_pos_z-index.asp