关于Less一篇就够了

概念

CSS 预编译器,扩展了 CSS 语言,添加导入、变量、混合、嵌套、运算等功能。

Importing (导入)

@import "library"; // library.less
@import "typo.css";

Variables (变量)

@nice-blue: #5b83ad;
#header {
  color: @nice-blue;
}

Mixins (混合)

.bordered {
  border-top: dotted 1px black;
  border-bottom: solid 2px black;
}
#menu a {
  color: #111;
  .bordered;
}

嵌套

#header {
  color: black;
  .logo {
    width: 300px;
  }
  &:after {
    // ...
  }
}

运算

加减乘除

@base: 5%;
@filler: @base * 2;
@other: @base + @filler;
color: #888 / 4;

更多Less语言特性:http://lesscss.cn/features/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值