2

我试图在引导程序中覆盖他的列宽。正如 bootstrap_and_overrides.less 中所建议的,这是我应该覆盖它们的地方:

// Since bootstrap was imported above you have access to its mixins which
// you may use and inherit here
//
// If you'd like to override bootstrap's own variables, you can do so here as well
// See http://twitter.github.com/bootstrap/less.html for their names and documentation
// Example:
// @linkColor: #ff0000;
 @gridColumnWidth : 55px;
 @gridGutterWidth: 43px;

当我重新启动服务器并重新加载页面时,生成的 css 没有改变,跨度宽度保持不变。

我是否需要重新编译 less 文件才能使更改生效?我怎么做?

提前致谢!

4

2 回答 2

1

是的,您需要使用LESS重新编译才能看到您的更改。要么使用来自 LESS 站点的 JavaScript,要么使用Twitter Bootstrap 页面上关于 LESS的方法之一。

于 2012-08-19T23:35:37.757 回答
0

您还可以在http://twitter.github.com/bootstrap/customize.html自定义您的引导程序下载。

@gridColumnWidth并且@gridGutterWidth可以定制。

于 2012-08-30T18:58:43.990 回答