1

我真的很想退出打字:

@media (min-width: @min-tablet-width) and (max-width: @max-tablet-width) {
  // styles for tablets
}

在我的LESS文件中。

据我所知,LESS 无法将其移至函数中,例如:

.tablet() {
  // styles for tablets
}

还有其他解决方案吗?

4

2 回答 2

1

看看这个:https ://github.com/dalo​​u/bootstrap3-less-mixins ex:

h2 {
    font-size: 20px;
    .phone-only({
         font-size: 14px;
    })
}
于 2014-04-05T08:11:12.047 回答
0

目前的答案是:

编辑:见上面Dalou的回答。

于 2012-10-03T18:32:51.000 回答