0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

今回はブラウザ幅ごとにスタイルを分けたい時の記述についてご紹介しようと思います。

やり方

まずは幅の定義をします

width.scss
// 幅750px以下でスタイルをあてたい場合
@mixin sp {
  @media screen and (max-width: 750px) {
    @content;
  }
}

// 600px以上、800px以下でスタイルをあてたい場合
@mixin medium {
  @media screen and (600px <= width < 800px) {
    @content;
  }
}

定義し終わったら、使いたいscssファイルにimportします。

sample.scss
@use 'import/width' as g;

.container {
  // 通常のフォントサイズ
  font-size: 20px;

  // 幅750px以下でフォントサイズが40px
  @include g.sp {
    font-size: 40px;
  }

  // 幅600px以上、800px以下でフォントサイズが30px
  @include g.medium {
    font-size: 30px;
  }
  
}

おわりに

いかがだったでしょうか。
今はレスポンシブデザインが主流ですのでぜひ使ってみてください!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?