更改默认的响应式导航栏断点

有没有办法可以改变Bootstrap菜单响应和崩溃的断点? 979px对我来说太大了,我希望这种转换只能在较小的尺寸上进行。


是的,您可以通过在less/variables.less文件中重新定义@navbarCollapseWidth变量来实现。 然后重新编译css。

编译指令可以在编译Bootstrap with Less部分官方文档中找到。


@ nick-kugaevsky'用较少的编译引导程序' - 链接被破坏。

顺便说一句,对于bootstrap 3 RC 1,您将需要在less/variables.less修改以下属性

// Point at which the navbar stops collapsing
@grid-float-breakpoint:     @screen-phone;      // here i allready changed it

顺便说一句:这只禁止响应导航崩溃时,宽度> @ screen-phone例如。 这里有一些关于编译bootstrap的更多信息:http://bootstrap.lesscss.ru/less.html

您必须下载引导程序,将您的应用程序或节点js util指向包含较少文件的引导目录,修改较少/变量并重新编译bootstrap.less文件。

呃,刚刚发现它是写在bootstrap文档中的:http://getbootstrap.com/components/#navbar

链接地址: http://www.djcxy.com/p/89455.html

上一篇: Change the default responsive navbar breakpoint

下一篇: How to change navbar collapse threshold using Twitter bootstrap