關于點贊最多這個問題,sass官網文檔是這樣說的
Add quotes to a string if the string isn’t quoted, or returns the same string if it is.
所以,所以只是單純的增加去除引號,而不管是不是單雙
http://sass-lang.com/documentation/Sass/Script/Functions.html#quote-instance_method
Add quotes to a string if the string isn’t quoted, or returns the same string if it is.
所以,所以只是單純的增加去除引號,而不管是不是單雙
http://sass-lang.com/documentation/Sass/Script/Functions.html#quote-instance_method
2016-11-04
基礎知識還是蠻實用的,進階就當了解吧。感覺個人不怎么愿意去用。貌似也不知道該用在何處。hah
2016-10-17
.footer{
width : percentage(5px / 10px);
height: 5px / 10px * 100%; //乘以100%一樣的效果
}
width : percentage(5px / 10px);
height: 5px / 10px * 100%; //乘以100%一樣的效果
}
2016-10-10
Sass 擴展了 CSS 的 @import 規則,讓它能夠引入 SCSS 和 Sass 文件。 所有引入的 SCSS 和 Sass 文件都會被合并并輸出一個單一的 CSS 文件。
2016-10-09
色相是色彩特征,比如藍色是冷色,紅色是暖色,兩個顏色在色相環的位置是相對的,adjust-hue() 函數就是根據色相環調整色彩值。
話說研究色相不是設計師的工作嗎,為什么工程師也要參一腳啊。
話說研究色相不是設計師的工作嗎,為什么工程師也要參一腳啊。
2016-10-09