Sass SassScript &符號


可以通過使用&字元選擇父選擇器。它告訴應插入父選擇在哪裡。

語法

a {
    &:hover { color: green; }
}
&字元將被替換為父母選擇器<a>,當連結懸停改變連結的顏色為綠色。

範例

下面的例子演示了使用和在SCSS檔案:
<html>
<head><meta charset="UTF-8"> <title>& in SassScript - 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>Example using & in SassScript</h2>
   <a href="https://www.tw511.com/"> www.tw511.com </a>
   </div>
</body>
</html>
接下來,建立檔案style.scss。

style.scss

a {
    font-size: 20px;
    &:hover { background-color: yellow;}
}
可以告訴SASS監視檔案,並隨時使用下面的命令更新SASS檔案修改CSS:
sass --watch C:\ruby\lib\sass\style.scss:style.css
接著執行上面的命令,它會自動建立style.css檔案,下面的程式碼:

style.css

a {
  font-size: 20px;
}
a:hover {
    background-color: yellow;
}

輸出結果

讓我們來執行以下步驟,看看上面的程式碼工作:
  • 儲存上面的html程式碼到&_SassScript.html檔案。
  • 在瀏覽器中開啟該HTML檔案,輸出如下顯示。