less
作者:
叫我王必过 | 来源:发表于
2019-06-13 18:12 被阅读0次
一、变量
@width: 10px;
@height: @width + 10px;
#header {
width: @width;
height: @height;
}
二、混合
.bordered {
border-top: dotted 1px black;
border-bottom: solid 2px black;
}
#menu a {
color: #111;
.bordered();
}
.post a {
color: red;
.bordered();
}
三、运算
@color: #224488 / 2; //results in #112244
background-color: #112244 + #111; // result is #223355
@var: 50vh/2;
width: calc(50% + (@var - 20px));
四、内置函数
本文标题:less
本文链接:https://www.haomeiwen.com/subject/hgosfctx.html
网友评论