嵌套输出方式 nested
展开输出方式 expanded
紧凑输出方式 compact
压缩输出方式 compressed
...
yekong
3年前 (2021-08-17)
喜欢
压缩输出方式 compressed
nav {
ul {
margin: 0;
padding: 0;
list-style: none;
}
li { display: inline-block; }
a {
display:...
yekong
3年前 (2021-08-17)
喜欢
紧凑输出方式 compact
nav {
ul {
margin: 0;
padding: 0;
list-style: none;
}
li { display: inline-block; }
a {
display: bl...
yekong
3年前 (2021-08-17)
喜欢
展开输出方式 expanded
nav {
ul {
margin: 0;
padding: 0;
list-style: none;
}
li { display: inline-block; }
a {
display: b...
yekong
3年前 (2021-08-17)
喜欢
嵌套输出方式 nested
Sass 提供了一种嵌套显示 CSS 文件的方式。
nav {
ul {
margin: 0;
padding: 0;
list-style: none;
}
li { display: inline-block;...
yekong
3年前 (2021-08-17)
喜欢
Koala
全平台免费工具
CodeKit
mac收费工具
...
yekong
3年前 (2021-08-17)
喜欢
单文件编译
sass <要编译的Sass文件路径>/style.scss:<要输出CSS文件路径>/style.css
多文件编译
sass sass/:css/
监听编译
sass --watch <要编译的Sass文件路径>/style...
yekong
3年前 (2021-08-17)
喜欢
查看Sass版本
sass -v
更新Sass
gem update sass
卸载Sass
gem uninstall sass
...
yekong
3年前 (2021-08-17)
喜欢
安装Ruby
brew install ruby
安装sass
sudo gem install sass
sass -v
Ruby Sass 3.7.4
执行命令
创建一个文件测试一下吧
这里创建了一个text.scss文件
Sass --watch text.scss:...
yekong
3年前 (2021-08-17)
喜欢
SCSS 和 CSS 写法无差别,这也是 Sass 后来越来越受大众喜欢原因之一。简单点说,把你现有的“.css”文件直接修改成“.scss”即可使用。
...
yekong
3年前 (2021-08-17)
喜欢