肉渣教程

函数

上一节 下一节

函数

LESS中有很多内置函数可用。主要分为逻辑函数、字符串函数、列表函数、数学函数、类型函数、混合函数、色彩函数等;更详细的函数文档,可查看http://lesscss.org/functions/。


使用less

.example {
   width: max( 3px, 6px ); 
}


输出css

.example {
  width: 6px;
}

函数

上一节 下一节