twitter-bootstrap – 较少v2不编译Twitter的Bootstrap 2.x

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 较少v2不编译Twitter的Bootstrap 2.x前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当编译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

猜你在找的Bootstrap相关文章