关于点赞最多这个问题,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