Sass 布爾運算符
描述
您可以使用and、or和not(與或非)運算符對Sass腳本執行布爾運算。
例子
下面的示例演示了在SCSS文件中使用布爾運算:
<html><head><title>Boolean Operations</title><linkrel="stylesheet"type="text/css"href="style.css"/><linkrel="stylesheet"href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"><scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script><scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script></head><body><h3>Example using Boolean Operations</h3><pclass="bool">SASS stands for Syntactically Awesome Stylesheet..</p></body></html>
接下來,創建文件style.scss。
style.scss
$age:20;.bool{@if($age>10and$age<25){color:green;}}
您可以通過使用以下命令讓SASS查看文件并在SASS文件更改時更新CSS:
sass--watch C:\ruby\lib\sass\style.scss:style.css
接下來執行上面的命令,它將自動創建style.css文件用下面的代碼:
style.css
.bool{color:green;}
輸出
讓我們執行以下步驟,看看上面的代碼如何工作:
將上面的html代碼保存在boolean_operations.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。