老老實實按照下面步驟安裝:
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