html – 在哪里编辑bootstrap @ grid-float-breakpoint

前端之家收集整理的这篇文章主要介绍了html – 在哪里编辑bootstrap @ grid-float-breakpoint前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道你可以在“variables.less”文件中更改@ grid-float-breakpoint,它编译成我们都下载和使用的bootstrap包(我认为)。
bootstrap/
├── css/
│   ├── bootstrap.css
│   ├── bootstrap.min.css
│   ├── bootstrap-theme.css
│   └── bootstrap-theme.min.css
├── js/
│   ├── bootstrap.js
│   └── bootstrap.min.js
└── fonts/
    ├── glyphicons-halflings-regular.eot
    ├── glyphicons-halflings-regular.svg
    ├── glyphicons-halflings-regular.ttf
    └── glyphicons-halflings-regular.woff

我的问题是你可以在不自定义新的引导程序包的情况下更改@ grid-float-breakpoint,而是使用@media或其他方法通过CSS更改它。如果可能,请建议在何处以及如何执行此操作的方法。谢谢

解决方法

有两种推荐的主要和不同的方法来改变@ grid-float-breakpoint(这是LESS中的一个变量)。

>您可以下载master(https://github.com/twbs/bootstrap/archive/master.zip),打开bootstrap.com/variables.less文件,然后使用LESS编译器进行编译。这涉及在您的计算机上安装LESS编译器,例如Grunt(多平台)或CodeKit(Mac)。

>或者转到getbootstrap.com/customize并在那里更改变量并下载已编译的CSS文件

原文链接:https://www.f2er.com/html/232602.html

猜你在找的HTML相关文章