LoginSignup
1
0

More than 5 years have passed since last update.

sass mixin使って見たらすごく楽しかった。。

Posted at

mixin使ってみるとすごく楽しくなったのでメモします。
今までHTML・CSSのコーディングをするときは、スマホのレイアウトを作ってから、PCのレイアウトを作るという順番でやってきました。
PC用のレイアウトを作る際に、、、
@media screen and (min-width: 768px) { hoge: pcStyle }
これを連発していました。。。

そんなとき、mixinについてググっていると、@contentという便利なものがあるということを知りました!
これは使うしかない!!!

早速、、、

$tablet-width: 768px;
@mixin tablet-layout {
  @media screen and (min-width: $tablet-width) {
    @content;
  }
} 

このようにかくと、あの長いメディアクエリの記述が

@include tablet-layout {
  //スタイル
}

このようにかけてしまったのです。。うれしい。。たのしい。。めでたし。。

初心者がうれしくなって勢いで書いてしまったので間違っていたらすみません。ご指摘お願いします。。

1
0
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
1
0