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://bethplummer.com/projectdemo/
该图像隐藏了您的菜单,因为它首先被调用,z-index但您可以更改它。将此添加到您的CSS:
z-index
#menu-menu { overflow: hidden; margin-top: -76px; position: relative; z-index: 100; }