<html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>SASS注釋 - www.yiibai.com</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1>Welcome to YiiBai</h1>
<a >Yiibai Yiibai</a>
</body>
</html>
接下來創(chuàng)建一個文件:style.scss.
/* This comment is
* more than one line long
* since it uses the CSS comment syntax,
* it will appear in the CSS output. */
body { color: black; }
// These comments are in single line
// They will not appear in the CSS output,
// since they use the single-line comment syntax.
a { color: blue; }
sass --watch C:\Ruby22-x64\style.scss:style.css
/* This comment is
* more than one line long
* since it uses the CSS comment syntax,
* it will appear in the CSS output. */
body {
color: black; }
a {
color: blue; }

要學(xué)習(xí)有關(guān)多行注釋中的插值,單擊此鏈接.