less 基本用法
变量
@color:"#fff";
.nav{
color:@color;
}
混合
.common{
height:10px;
width:10px;
}
.post{
color:red;
.common()
}
.common 不参与编译 只调用其中的样式
嵌套
.header {
color: black;
.navigation {
font-size: 12px;
}
.logo {
width: 300px;
}
}
函数
.funcEqu(@className, @item,@width) {
.@{className} {
width: @width;
top: 50%;
@{item}: 0;
transform: translate(0, -50%);
height: 60px;
border-radius: 3px 0 0 3px;
}
}
.funcEqu(btn-right-table, right,100px);
.funcEqu(btn-left-table, left,200px);