SCSS中的运算符

3 阅读1分钟

算术运算符

例如:+、-、*、math.div()或/和%。分别是加,减,乘,除,取余 ()提高优先级

scss代码

.container{
    display:flex;
}
article[role="main"]{
    width:(600px / 960px) *100%;
}
article[role="complementary"]{
    width:(600px / 960px) *100%;
    margin-left:auto;
}

css代码

.container{
    display:flex;
}
article[role="main"]{
    width:62.5%;
}
aside[role="complementary"]{
    width:31.25%;
    margin-left:auto;
}

条件运算符

例如:>、<、>=、<=、==、!= 大于 小于 大于等于 小于等于 等于 不等于

逻辑运算符

例如:and or not 与 或 非