Bootstrap,less - 制作一个高度=宽度的盒子

时间:2014-03-27 09:23:06

标签: css twitter-bootstrap less

我试图让我的头脑更少。 bootstrap混合。我需要的是一个盒子,它将采用4列并具有相同的高度。

.box-4x4 {
  .make-lg-column(4);
  height: ?
}

有没有办法用LESS计算它?

1 个答案:

答案 0 :(得分:3)

只需查看.make-lg-column mixin的the definition并将其应用于height,例如:

.box-4x4 {
    @columns: 4;
    .make-lg-column(@columns);
    @media (min-width: @screen-lg-min) {
        height: percentage((@columns / @grid-columns));
    }
}