简体   繁体   中英

Dropdown not showing elements Bootstrap 3

I'm having a issue with the dropdown element of bootstrap 3. It's not showing the elements. The reason is because I'm having a conflict with the css off "wrapper"

#wrapper    { width:100%; height:100%; position:absolute; top:0; left:0; overflow:hidden; }

You will probably said remove it and it works. But I can't do that. I'm trying to do a parallex effect. This one being more specific.

And having that style is part of doing the parallex effect. I though of changing the top size, but it wouldn't work if the dropdown gets more elements.

I have a demo showing the issue.

Any idea how I could solve this issue?

Just add to your "divide-nav" class this styles:

.divide-nav {
    position: relative;
    z-index: 999;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM