6

Bootstrap - horizontal menu of the stack

 2 years ago
source link: https://www.codesd.com/item/bootstrap-horizontal-menu-of-the-stack.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Bootstrap - horizontal menu of the stack

advertisements

I have created menu with collapsable class .nav-collapse in bootstrap. When I resize window it disappears. So I've overrided .nav-collapse class with this css:

.nav-collapse, .nav-collapse.collapse {
    height: auto;
    overflow: visible;
}

This is not the desired way of doing it everytime. Take a look at this jsfiddle and remove above style from css. It will be easier to understand.

QUESTION: Is there a simple built in solution for stacking horizontal menu in bootstrap?


Bootstrap does have built in stacking : http://twitter.github.io/bootstrap/components.html#navs

This would be the correct layout for .nav-collapse in your situation:

<div class="top-nav">
    <div class="container-fluid">
        <div class="nav-collapse collapse">
            <ul class="nav nav-tabs">
                <li><a href="#">Item1</a></li>
                <li><a href="#">Item2</a></li>
                <li><a href="#">Item3</a></li>
            </ul>
        </div><!--/.nav-collapse -->
    </div>
</div>

Then what I would do is override the default media query from bootstrap-responsive.css in a separate bootstrap-overrides.css:

@media (max-width: 979px) {
    .top-nav .nav-collapse, .top-nav .nav-collapse.collapse {
        height: auto;
        overflow: visible;
    }
}

fiddle


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK