首页 > 技术文章 > less与sass公共样式的前缀区别

huoshengmiao 2021-09-18 14:36 原文

less符号@

@sidebar:240px;
@headerHeight:65px;
@bodyMinWidth: 700px;

注意,赋值不是等号
在组件中,就可以使用全局变量了

使用
.content {
    background:red;
    height:auto;
    margin-left: @sidebar;
    width: calc(100%-@sidebar);
  }

sass符号$

$color-red:red;
$color-yellow: yellow;
$color-white: white;
$color-light-gray: #F5F5F5;

使用

 

推荐阅读