淘先锋技术网

首页 1 2 3 4 5 6 7

描述

您可以使用+操作来连接字符串(例如font-size:5px + 3px)。

例子

下面的示例演示了在SCSS文件中使用字符串操作:

<html><head><title>String 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><divclass="container"><h3>Example using Sass Strings Operations</h3><p>SASS stands for Syntactically Awesome Stylesheet..</p></div></body></html>

接下来,创建文件style.scss。

style.scss

下面的SCSS代码用于连接增加<p>标签语句的字体大小的值。

p{font-size:5px+10px;}

您可以通过使用以下命令让SASS查看文件并在SASS文件更改时更新CSS:

sass--watch C:\ruby\lib\sass\style.scss:style.css

接下来执行上面的命令,它将自动创建style.css文件用下面的代码:

style.css

p{font-size:15px;}

输出

让我们执行以下步骤,看看上面的代码如何工作:

  • 将以上html代码保存在string_operations.html文件中。

  • 在浏览器中打开此HTML文件,将显示如下输出。

Sass Operations