javascript - How to modify the @grid-float-breakpoint variable implementation when the elements contained in the bootstrap navigation bar overflow.
某草草
某草草 2017-06-05 11:12:46
0
1
2097

The whole problem is as shown in the picture. When the window is reduced to sm, the navigation bar becomes two lines. When the window is reduced to xs, it will be folded and hidden normally.
I just want to ask the master if he can fold the browser window directly when it is reduced to sm.
Please give me specific steps! Many thanks!

某草草
某草草

reply all(1)
迷茫

Adjust the display attribute under the width that needs to be folded and hidden. The xs should be the width of 768px. When setting the minimum width of 768px, the display is none. If the width is less than 768px, normal folding and hiding will be achieved. I hope it can help you!

@media (min-width: 768px)
.navbar-toggle {
    display: none;
}

  • reply No, I am folding it when the screen is smaller than 991px. I don’t know how to change it.
    此用户已成仙 author 2017-07-20 10:00:30
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!