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);
}