sass/compass使い方 ・ターミナルでcompass起動 ・ネスト(入れ子) ・演算 ・変数 ※if/each/mixin/extend/CSS Sprite/base64書き出しは、そのうち書くはず! 詳細 ■ターミナルでcompass起動 $ compass watch ■ネスト(入れ子) //scss .aaa { width:100px; .bbb { height:100px; } .ccc { height:50px; } } a { width:100px; &:hover { color: #ff0000; } } css .aaa { width:100px; } .aaa .bbb { height:100px; } .aaa .ccc { height:50px; } a { width:100px; } a:hover { color: #ff0000; }