Sass中的运算

SASS 中的运算和 LESS 也一样,都支持 +-*/ 运算,注意点:无论是 LESS 中的运算还是 SASS 中的运算都需要加上 ()

修改 index.scss

div {
  width: 200px;
  height: 200px;
  background: red;
  position: absolute;
  left: 50%;
  // margin-left: (-200px / 2);
  // margin-left: (-200px * 0.5);
  // margin-left: (-200px + 55);
  margin-left: (-200px - 55);
}

image-20210814205604352

image-20210814205620212

posted @ 2021-08-14 20:57  BNTang  阅读(45)  评论(0)    收藏  举报