scss基本使用

<style lang="scss">
// 声明变量
$color:red;
// 混入
@mixin common {
  height: 100px-20px;
  // 百分比减 calc -号两端要有空格
  width: calc(100% - 500px);
}
.mixin {
  // 调用公共方法
  @include common;
  background: $color;
}
</style>
posted @ 2021-11-07 23:09  Smile浅笑  阅读(28)  评论(0编辑  收藏  举报