Bootstrap 3.1 How to use mixin make-grid-columns()?
grid, less, twitter-bootstrap-3
Solution
According to the documentation, you can use the `.make-md-column(3);` mixin, for example:
.myClass{
.make-md-column(3); /* Replaces .col-md-3; */
border: 1px solid #000;
[etc, etc]
}
Problem
I used to use Bootstrap 3.0, and compiled my css from the bootstrap less files + some of my own less. In this some of my classes adopts some bootstrap styles like this: ``` .myClass{ .col-md-3; border: 1px solid #000; [etc, etc] } ``` It worked out great in Bootstrap 3.0, since all col-md-X classes are defined as less variables. But in Bootstrap 3.1 this seems to be somehow replaced with a mixin function called make-grid-columns(). Does anybody know how to utilize this mixin, and how to port the construction above into Bootstrap 3.1? :-/