タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

compass-演算に関するyat8823jpのブックマーク (1)

  • 『sass,compassを使う Vol.1』

    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; }

    『sass,compassを使う Vol.1』
  • 1