tkymtk's blog

Ruby on Rails及びその周辺について調べたこと。Do whatever you want to do at your own pace.

Ruby on Rail Tutorial bootstrap-sassでハマった

.debug_dump {
  .
  .
  .
  @include box_sizing;
}

シンタックスエラーでできない。

.debug_dump {
  .
  .
  .
  @include box_sizing(border-box);
}

これで出来た。どうやら引数が必要なようだ。

bootstrap-less のソースコード

// Box sizing
.box-sizing(@boxmodel) {
  -webkit-box-sizing: @boxmodel;
     -moz-box-sizing: @boxmodel;
          box-sizing: @boxmodel;
}

リンク: rails用のbootstrap-sassのコード

ついでに Using LESS with Bootstrap

Bootstrap3への変更点は: Bootstrap3で何が変わるのかをまとめてみた | Pimp My Site

間違いがあれば、ご指摘下さると幸いです。