LoginSignup
3
3

More than 5 years have passed since last update.

sassでBEM的な書き方を簡単に

Last updated at Posted at 2016-01-06

最近知ったのですが、sassでBEMっぽい書き方をしたい時

// 愚直
.parent {
  .parent__child {
    .parent__child__grandson {
      text-align: center;
    }
 }
}

と書いてましたが、下記の方が見通しが良いですね

// スマート
.parent {
  &__child {
    &__grandson {
      text-align: center;
    }
  }
}

出力結果

.parent__child__grandson {
  text-align: center;
}

調べたらsass3.3から導入されたようです。
Support for BEM modules in Sass 3.3

やばい、もう数年前の話じゃないか!

以上です。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3