您可以使用+操作來連接字符串(例如font-size:5px + 3px)。
下面的示例演示了在SCSS文件中使用字符串操作:
<html> <head> <title>String Operations</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"> <h3>Example using Sass Strings Operations</h3> <p>SASS stands for Syntactically Awesome Stylesheet..</p> </div> </body> </html>
接下來,創(chuàng)建文件style.scss。
下面的SCSS代碼用于連接增加<p>標簽語句的字體大小的值。
p { font-size: 5px + 10px; }
您可以通過使用以下命令讓SASS查看文件并在SASS文件更改時更新CSS:
sass --watch C:\ruby\lib\sass\style.scss:style.css
接下來執(zhí)行上面的命令,它將自動創(chuàng)建style.css文件用下面的代碼:
p { font-size: 15px; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將以上html代碼保存在string_operations.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
更多建議: