<html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>SASS註釋 - www.tw511.com</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1>Welcome to YiiBai</h1>
<a href="https://www.tw511.com/">Yiibai Yiibai</a>
</body>
</html>
接下來建立一個檔案: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; }
要學習有關多行註釋中的插值,單擊此連結.