2024年8月26日
if 语句可以方便地检查变量是否存在或是否匹配某些内容:
$var: true !default; // Can be overridden elsewhere
@if $var == true {
// Conditional code
}
$other: single;
@if $other == single {
// Code for if it’s single
} @else if $other == double {
// Double code
} @else {
// Default if it’s neither
}
确保如果您的变量属性用’引号括起来存储,那么您的@if语句也会检查这一点。(例如$other ==‘single’)。
if语句对于检查变量的混合或在库中包含或排除代码很有用。…