$font-size:12px; $line-height:1.5; *{ font:$font-size/$line-height "Microsoft Yahei",arial,"宋体"; }
css文件解析为: *{ font: 8px "Microsoft Yahei", arial, "宋体"; }
sass compass web前端开发
建议您还是分开写吧。哈哈 或者使用非转义符合"\"
Sass 中符号 "/" 被重载为除法运算符,要想让"/"表示 CSS 中的分隔符,可以使用插值,即用 #{variable}:
$font-size:12px; $line-height:1.5; *{ font: #{$font-size}/#{$line-height} "Microsoft Yahei",arial,"宋体"; }
compiled to:
* { font: 12px/1.5 "Microsoft Yahei", arial, "宋体"; }
compass 使用精灵图@include all-icons-sprites()报错?
初学sass在screen.scss中写样式,但在screen.css中没有显示出来。
compass有compass watch自动编译命令,那还要koala编译工具有什么用?
sass如何让css代码看起来高大上?
compass创建项目生成的-sass-cache有什么作用?可以删除吗?
sass中在cmd使用sass --watch出现What files should I wa...