S.N. |
資料型別及說明
|
範例 |
---|---|---|
1 |
Numbers
它代表整數型別
|
2, 10.5 |
2 |
Strings
單或雙引號中定義的字元序列
|
'Yiibai', "yiibai" |
3 |
Colors
用於定義顏色值
|
red, #008000, rgb(25,255,204) |
4 |
Booleans
布林型別返回true或false
|
10 > 9 指示為 true |
5 |
Nulls
它指定為空值,未知的資料
|
if(val==null) {//statements} |
6 |
Space and Comm
表示由空格或逗號分隔值
|
1px solid #eeeeee, 0 0 0 1px |
7 |
Mapping
它從一個值對映到另一個值
|
FirsyKey: frstvalue, SecondKey: secvalue |
<html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>字串 - www.tw511.com</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>字串使用範例</h2>
<p class="yiibai">Sass is an extension of CSS that adds power and elegance to the basic language.</p>
</div>
</body>
</html>
接下來,產生一個檔案:style.scss.
$name: "yiibai"; p.#{$name} { color: blue; }
sass --watch C:\Ruby22-x64\style.scss:style.css
p.yiibai{ color: blue; }
nth 函式: 它提供了列表的特定的專案
join 函式: 它將多個列表加入成為一個列表
append 函式: 追加的專案到列表的另一端
@each 指令: 它提供列表中每個專案的樣式
10px 11px, 15px 16px
{10px 11px} {15px 16px}
$map: (FirsyKey: frstvalue, SecondKey: secvalue, Thirdkey: thdvalue);
map-get: 提供對映的值。
map-merge: 它增加值到對映中
@each directive: 它規定了鍵/值對對映的樣式