評論

Sass vs. Scss 中的評論大致相似,除非涉及多行。SASS 多行是縮排敏感的,而 SCSS 依賴於註釋終止符。

單行評論

style.scss

// Just this line will be commented!
h1 { color: red; }

style.sass

// Exactly the same as the SCSS Syntax!
h1
  color: red

多行評論

style.scss

發起人:/*

終結者:*/

/* This comment takes up
 * two lines.
 */
h1 {
   color: red;
}

這將為 h1 元素設定紅色

style.sass

現在,SASS兩個啟動器,但沒有相應的終結器。SASS 中的多行註釋對縮排級別很敏感。

發起人:///*

// This is starts a comment,
   and will persist until you 
   return to the original indentaton level.
h1
  color: red

這將為 h1 元素設定紅色

使用/* Initiator 也可以這樣做:

/* This is starts a comment,
   and will persist until you 
   return to the original indentaton level.
h1
  color: red

所以你有它! SCSSSASS 的評論之間的主要區別!