简体   繁体   中英

Make bootstrap navbar fixed in horizonatal scroll

I have a navbar that needs to be kept fixed in horizontal scroll, it already kept fixed for normal(vertical) scrolling, but during horizontal scroll, it gets scrolled away

Ideally, as per web development standards, you shouldn't have horizontal scrolls on your webpages as this is considered as bad practice.

But still for any specific case you want to do it then you can use style position:fixed to do it.

HTML:

<nav class="fixedbar">
    ...
</nav>

CSS:

.fixedbar {
     position: fixed;
}

Or using inline CSS:

HTML:

<nav style="position: fixed">
    ...
</nav>

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