使用嵌套屬性可以避免重寫CSS多次。例如,使用 font 作為使用一些屬性(例如font-family,font-size,font-weight和font-variant)的命名空間。在正常的CSS中,您需要每次使用命名空間來編寫這些屬性。使用SASS,您可以通過僅寫入命名空間一次來嵌套屬性。
以下示例描述了在SCSS文件中使用嵌套屬性:
<html> <head> <title>Nested Properties</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="/attachments/tuploads/sass/jquery.min.js"></script> <script src="/attachments/tuploads/sass/bootstrap.min.js"></script> </head> <body> <div class="container"> <h1>Example using Nested Properties</h1> <p class="line">SASS stands for Syntactically Awesome Stylesheet</p> </div> </body> </html>
接下來,創(chuàng)建文件 style.scss 。
.line { font: { family: Lucida Sans Unicode; size:20px; weight: bold; variant: small-caps; } }
您可以通過使用以下命令讓SASS查看文件并在SASS文件更改時(shí)更新CSS:
sass --watch C:\ruby\lib\sass\style.scss:style.css
接下來執(zhí)行上面的命令,它將用下面的代碼自動(dòng)創(chuàng)建 style.css 文件:
.line { font-family: Lucida Sans Unicode; font-size: 20px; font-weight: bold; font-variant: small-caps; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上述html代碼保存在 nested_properties.html 文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
更多建議: