⚛Do what i want.⚛
变量是指没有固定的值,可以改变的,因为我们css中的一些颜色和数值经常使用
@变量名:值;
//定义一个粉色的变量 @color: pink; body { background-color: @color; } div { color: @color; }