标签: twitter-bootstrap-3 less mixins important
根据较少的文档:
在mixin调用后使用!important关键字将其继承的所有属性标记为!important less docs
我正在使用Bootstrap源中包含的.make-{size}-column(@columns) mixin。但是,!important关键字不会传播到此处的子属性。具体来说,我希望width属性变得重要,但它不会以这种方式编译。编译器完全输出其他所有内容,只是没有important关键字。
.make-{size}-column(@columns)
!important
width
important
这是一个错误还是我错过了什么?