檔案擴充套件名為 .css
檔案名以 http:// 開始
檔案名是 url()
@import 構成任何媒體查詢
@import "style.css"; @import "https://www.tw511.com/bar.css"; @import url(style); @import "style" screen;
sass --watch C:\Ruby22-x64\style.scss:style.css
@import url(style.css); @import "https://www.tw511.com/bar.css"; @import url(style); @import "style" screen;
偏導是其中使用下劃線(_partials.scss)開頭SASS或SCSS檔案名稱。該部分檔案名可以在SASS檔案中,而無需使用下劃線匯入。SASS不會編譯CSS檔案,但使用下劃線,這不僅使得SASS了解到區域性的不會生成CSS檔案。
.container { background: #ffff; }
h4 { @import "example"; }
h4 .container { background: #ffff; }
@import 'stylesheet'
<html>
<head><meta charset="UTF-8"> <title>Import指令範例 - www.tw511.com</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body class="container">
<h1>@Import指令範例</h1>
<h4>Import the files in SASS</h4>
<ul>
<li>Red</li>
<li>Green</li>
</ul>
</body>
</html>
ul{ margin: 0; padding: 1; } li{ color: #680000; }
@import "partial"; .container { background: #ffff; } h1 { color: #77C1EF; } h4 { color: #B98D25; }
sass --watch C:\Ruby22-x64\style.scss:style.css
ul { margin: 0; padding: 1; } li { color: #680000; } .container { background: #ffff; } h1 { color: #77C1EF; } h4 { color: #B98D25; }