@if指令接受SassScript表達(dá)式,并且只要表達(dá)式的結(jié)果為false或null以外的任何結(jié)果,就使用嵌套樣式。
@if expression { //CSS codes are written here }
以下示例演示在SCSS文件中使用@if指令:
<html> <head> <title>Control Directives & Expressions</title> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <div class="container"> <h2>Example for Control Directive & Expressions</h2> <p>SASS stands for Syntactically Awesome Stylesheet. </p> </div> </body> </html>
接下來(lái),創(chuàng)建文件style.scss。
p{ @if 10 + 10 == 20 { border: 1px dotted; } @if 7 < 2 { border: 2px solid; } @if null { border: 3px double; } }
您可以通過(guò)使用以下命令讓SASS查看文件并在SASS文件更改時(shí)更新CSS:
sass --watch C:\ruby\lib\sass\style.scss:style.css
接下來(lái)執(zhí)行上面的命令,它將自動(dòng)創(chuàng)建style.css文件用下面的代碼:
p { border: 1px dotted; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上述html代碼保存在@ if_directive.html文件中。
在瀏覽器中打開(kāi)此HTML文件,將顯示如下輸出。
更多建議: