@else if語句與@if指令一起使用。每當@if語句失敗,則嘗試@else if語句,如果它們也失敗,則執(zhí)行@else。
@if expression { // CSS codes } @else if condition { // CSS codes } @else { // CSS codes }
以下示例演示如何使用@else if指令:
<html> <head> <title>Control Directives & Expressions</title> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <div class="container"> <h1>Example for Control Directive & Expressions</h1> <p>SASS stands for Syntactically Awesome Stylesheet.</p> </div> </body> </html>
接下來,創(chuàng)建文件style.scss。
$type: audi; p { @if $type == benz { color: red; } @else if $type == mahindra { color: blue; } @else if $type == audi { color: green; } @else { color: black; } }
您可以通過使用以下命令讓SASS查看文件,并在SASS文件更改時更新CSS:
sass --watch C:\ruby\lib\sass\style.scss:style.css
接下來執(zhí)行上面的命令,它將自動創(chuàng)建style.css文件用下面的代碼:
p { color: green; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將以上html代碼保存在if_else_directive.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
更多建議: