在Less中声明变量方式是使用@符号
@test_ 300px; .box { width: @test_width; height: @test_width; background-color: yellow; }
编译成css后
.box { width: 300px; height: 300px; background-color: yellow; }
在Less中声明变量方式是使用@符号
@test_ 300px; .box { width: @test_width; height: @test_width; background-color: yellow; }
编译成css后
.box { width: 300px; height: 300px; background-color: yellow; }