Skip to content
This repository has been archived by the owner on Jul 7, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 163 Bytes

映射.md

File metadata and controls

23 lines (17 loc) · 163 Bytes

映射

语法:

#colors() {
    black: #000;
    white: #fff;
}

p {
    color: #colors[black];
}

编译后:

p {
  color: #000;
}