我有一个像这样的LESS mixin:
.ico-space(@times){
@ico-space: ((25px + 38px) * @times) - 1px;
@media (min-width: @grid-float-breakpoint) {
@ico-space: ((25px + 38px) * @times) - 1px + 65px;
}
}
但是,它并没有在媒体查询中获取计算结果。 可能我在这里做错了,因为我对使用先进的LESS功能很陌生?