当编译Twitter的Bootstrap 2.3.2。 with Less 2我发现跟随
错误:
NameError: #grid > .core > .span is undefined in /home/bootstrap-2.3.2/less/navbar.less on line 199,column 3:
198 .navbar-fixed-bottom .container {
199 #grid > .core > .span(@gridColumns);
200 }
我如何解决这个问题?
我能够避免
错误,而无需
修改Bootstrap
文件,通过创建一个新的mixin在Bootstrap混合后加载:
#grid {
.core {
.span(@gridColumns) {
width: (@gridColumnWidth * @gridColumns) + (@gridGutterWidth * (@gridColumns - 1));
}
}
};
这对我们更好,因为我们避免修补contrib包。
原文链接:https://www.f2er.com/bootstrap/234494.html