Comments
-
Sass(SCSS) Comments /**/ and //CSS Preproseccor/Sass 2019. 4. 22. 10:49
Comments Sass는 여러줄 주석과 한줄 주석 모두 지원합니다. 여러줄 주석은 CSS 파일로 컴파일 시 출력되지만, 한 줄 주석은 제거되어 출력되지 않습니다. Sass /* This comment is * several lines long. * since it uses the CSS comment syntax, * it will appear in the CSS output. */ body { color: black; } // These comments are only one line long each. // They won't appear in the CSS output, // since they use the single-line comment syntax. a { color: green;..