<!DOCTYPE html><html lang="zh-CN"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum=1.0, user-scalable=no"> <title>Less</title> <link rel="stylesheet" href="index.css"></head><body> <div class="box"></div></body></html>
/* @变量名称: 值; */
@bgc: red;
@box: .box;
@w: width;
@h: height;
@{box} {
@{w}: 100px;
@{h}: 100px;
background-color: @bgc;
}
.box {
width: 100px;
height: 100px;
background-color: red;
}
延迟加载
@color: red;
.box {
color: @color;
div {
@color: blue;
color: @color;
@color: yellow;
}
}
.box {
color: red;
}
.box div {
color: yellow;
}