老老实实按照下面步骤安装:
gem sources --remove https://rubygems.org/
gem sources -a https://ruby.taobao.org/
gem sources -l
sudo gem install sass
gem sources --remove https://rubygems.org/
gem sources -a https://ruby.taobao.org/
gem sources -l
sudo gem install sass
2015-05-27
//welcome to imooc learn Sass
$body-width: 200px;
$body-height: 300px;
body {
width: $body-width;
height: $body-height;
}
-----------------
终于成功编译了,(一)变量要有分号结尾,(二)px必须写在变量里.
$body-width: 200px;
$body-height: 300px;
body {
width: $body-width;
height: $body-height;
}
-----------------
终于成功编译了,(一)变量要有分号结尾,(二)px必须写在变量里.
2015-05-27
Error: Invalid CSS after " background: #f36": expected "{", was ""
on line 5 of ./6374/84JC/index.scss
Use --trace for backtrace.
on line 5 of ./6374/84JC/index.scss
Use --trace for backtrace.
2015-05-23