null 值
@use "sass:map";
@use "sass:string";
@debug string.index("Helvetica Neue", "Roboto"); // null
@debug map.get(("large": 20px), "small"); // null
@debug &; // null
如果列表包含
| scss 语句 | css 语句 | 
|---|---|
$fonts: ("serif": "Helvetica Neue", "monospace": "Consolas");
h3 {
  font: 18px bold  | h3 {
  font: 18px bold;
}
 | 
如果属性值为
| scss 语句 | css 语句 | 
|---|---|
$fonts: ("serif": "Helvetica Neue", "monospace": "Consolas");
h3 {
  font: {
    size: 18px;
    weight: bold;
    family:  | h3 {
  font-size: 18px;
  font-weight: bold;
}
 | 
| scss 语句 | css 语句 | 
|---|---|
@mixin  | .app-background {
  background-color: #036;
  color: rgba(255, 255, 255, 0.75);
}
.sidebar.app-background {
  background-color: #c6538c;
  color: rgba(255, 255, 255, 0.75);
}
 | 
