10
0

index.scss 258 B

1234567891011121314151617
  1. $a:plum;
  2. $box1: 2px solid #f00;
  3. // 单行注释
  4. /*多行注释*/
  5. .box {
  6. width: 500px;
  7. height: 500px;
  8. border: $box1;
  9. $bb: purple !global;
  10. }
  11. $cc: red !important;
  12. $dd: yellow !default;
  13. h1 {
  14. // color: $cc;
  15. // color: $dd;
  16. color: $bb;
  17. }