Home Web Front-end HTML Tutorial Sass运算_html/css_WEB-ITnose

Sass运算_html/css_WEB-ITnose

Jun 24, 2016 am 11:33 AM

加法
在 CSS 中能做运算的,到目前为止仅有 calc() 函数可行。在 Sass 中,运算只是其基本特性之一。在 Sass 中可以做各种数学计算。
加法运算是 Sass 中运算中的一种,在变量或属性中都可以做加法运算。如:

1 .box {2  width: 20px + 8in;3 }
Copy after login

编译出来的 CSS:

1 .box {2  width: 788px;3 }
Copy after login

对于携带不同类型的单位时,在 Sass 中计算会报错,如下例所示:

1 .box {2  width: 20px + 1em;3 }
Copy after login

编译的时候,编译器会报错:“Incompatible units: 'em' and ‘px'.”

减法
Sass的减法运算和加法运算类似

1 $full-width: 960px;2 $sidebar-width: 200px;3 .content {4  width: $full-width - $sidebar-width;5 }
Copy after login

编译出来的 CSS 如下:

1 .content {2  width: 760px;3 }
Copy after login

同样的,运算时碰到不同类型的单位时,编译也会报错

乘法
Sass 中的乘法运算和前面介绍的加法与减法运算还略有不同。虽然他也能够支持多种单位(比如 em ,px , %),但当一个单位同时声明两个值时会有问题

1 .box {2  width:10px * 2px; 3 }
Copy after login

编译的时候报“20px*px isn't a valid CSS value.”错误信息。
如果进行乘法运算时,两个值单位相同时,只需要为一个数值提供单位即可。上面的示例可以修改成:

1 .box {2  width: 10px * 2;3 }
Copy after login

编译出来的 CSS:

1 .box {2  width: 20px;3 }
Copy after login

Sass 的乘法运算和加法、减法运算一样,在运算中有不同类型的单位时,也将会报错。如下面的示例:

1 .box {2  width: 20px * 2em;3 }
Copy after login

编译时报“40em*px isn't a valid CSS value.”错误信息。

除法
Sass 的乘法运算规则也适用于除法运算。不过除法运算还有一个特殊之处。众所周知“/”符号在 CSS 中已做为一种符号使用。因此在 Sass 中做除法运算时,直接使用“/”符号做为除号时,将不会生效,编译时既得不到我们需要的效果,也不会报错。一起先来看一个简单的示例:

1 .box {2  width: 100px / 2; 3 }
Copy after login

编译出来的 CSS 如下:

1 .box {2  width: 100px / 2;3 }
Copy after login

要修正这个问题,只需要给运算的外面添加一个小括号( )即可:

1 .box {2  width: (100px / 2); 3 }
Copy after login

编译出来的 CSS 如下:

1 .box {2  width: 50px;3 }
Copy after login

除了上面情况带有小括号,“/”符号会当作除法运算符之外,如果“/”符号在已有的数学表达式中时,也会被认作除法符号。如下面示例:

1 .box {2  width: 100px / 2 + 2in; 3 }
Copy after login

编译出来的CSS:

1 .box {2  width: 242px;3 }
Copy after login

当用变量进行除法运算时“/”符号也会自动被识别成除法,如下例所示:

1 $width: 1000px;2 $nums: 10;3 .item {4  width: $width / 10; 5 }6 .list {7  width: $width / $nums;8 }
Copy after login

编译出来的CSS:

1 .item {2  width: 100px;3 }4 .list {5  width: 100px;6 }
Copy after login

”/ ”符号被当作除法运算符时有以下几种情况:

• 如果数值或它的任意部分是存储在一个变量中或是函数的返回值。
• 如果数值被圆括号包围。
• 如果数值是另一个数学表达式的一部分。

1 //SCSS2 p {3  font: 10px/8px; // 纯 CSS,不是除法运算4  $width: 1000px;5  width: $width/2; // 使用了变量,是除法运算6  width: round(1.5)/2; // 使用了函数,是除法运算7  height: (500px/2); // 使用了圆括号,是除法运算8  margin-left: 5px + 8px/2px; // 使用了加(+)号,是除法运算9 }
Copy after login

编译出来的CSS:

1 p {2  font: 10px/8px;3  width: 500px;4  height: 250px;5  margin-left: 9px;6 }
Copy after login

Sass 的除法运算还有一个情况。在乘法运算时,如果两个值带有相同单位时,做乘法运算时,出来的结果并不是我们需要的结果。但在除法运算时,如果两个值带有相同的单位值时,除法运算之后会得到一个不带单位的数值。如下所示:

1 .box {2  width: (1000px / 100px);3 }
Copy after login

编译出来的CSS如下:

1 .box {2  width: 10;3 }
Copy after login

变量计算
在 Sass 中除了可以使用数值进行运算之外,还可以使用变量进行计算。

1 $content-width: 720px;2 $sidebar-width: 220px;3 $gutter: 20px;4 .container {5  width: $content-width + $sidebar-width + $gutter;6  margin: 0 auto;7 }
Copy after login

编译出来的CSS

1 .container {2  width: 960px;3  margin: 0 auto;4 }
Copy after login

数字运算
在 Sass 运算中数字运算是较为常见的,数字运算包括前面介绍的:加法、减法、乘法和除法等运算。而且还可以通过括号来修改他们的运算先后顺序。和我们数学运算是一样的,

示例:

1 .box {2  width: ((220px + 720px) - 11 * 20 ) / 12 ; 3 }
Copy after login

编译出来的 CSS:

1 .box {2  width: 60px;3 }
Copy after login

颜色运算
所有算数运算都支持颜色值,并且是分段运算的。也就是说,红、绿和蓝各颜色分段单独进行运算。如:

1 p {2  color: #010203 + #040506;3 }
Copy after login

计算公式为 01 + 04 = 0502 + 05 = 0703 + 06 = 09, 并且被合成为:
如此编译出来的 CSS 为:

1 p {2  color: #050709;3 }
Copy after login

算数运算也能将数字和颜色值 一起运算,同样也是分段运算的。如:

1 p {2  color: #010203 * 2;3 }
Copy after login

计算公式为 01 * 2 = 0202 * 2 = 04 03 * 2 = 06, 并且被合成为:

1 p {2  color: #020406;3 }
Copy after login

字符运算

1 $content: "Hello" + "" + "Sass!";2 .box:before {3  content: " #{$content} ";4 }
Copy after login

编译出来的CSS:

1 .box:before {2  content: " Hello Sass! ";3 }
Copy after login

除了在变量中做字符连接运算之外,还可以直接通过 +,把字符连接在一起:

1 div {2  cursor: e + -resize;3 }
Copy after login

注意,如果有引号的字符串被添加了一个没有引号的字符串 (也就是,带引号的字符串在 + 符号左侧), 结果会是一个有引号的字符串。 同样的,如果一个没有引号的字符串被添加了一个有引号的字符串 (没有引号的字符串在 + 符号左侧), 结果将是一个没有引号的字符串。 例如:

1 p:before {2  content: "Foo " + Bar;3  font-family: sans- + "serif";4 }
Copy after login

编译出来的 CSS:

1 p:before {2  content: "Foo Bar";3  font-family: sans-serif; 4 }
Copy after login

 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles