我正在使用引导程序导航栏,希望它以880 px宽度切换/折叠。我尝试添加880 px宽度的媒体查询,但没有成功。这是我的css代码:
@media (min-width: 880px) {
.navbar-collapse {
width: auto !important;
border-top: 0 !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0 !important;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-right: 0 !important;
padding-left: 0 !important;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0 !important;
margin-left: 0 !important;
}
}
1条答案
按热度按时间ou6hu8tu1#
我发现这个,因为我正在寻找同样的解决方案。
针对引导程序3.1的更新
这个自定义效果很好。不要用1200px,写上你的自定义大小(880px)。如果你想阅读全文,这里是https://coderwall.com/p/wpjw4w/change-the-bootstrap-navbar-breakpoint的链接