4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

メディアクエリの指定で比較演算子(width >= ***px)が使える!

Posted at

はじめに

CSSでレスポンシブデザインを実装する際にメディアクエリを使用することが一般的ですが、範囲指定で比較演算子が使えるようになり直感的でわかりやすくなりました。
今まではメディアクエリで比較演算子(>=, <=)を使用することはできませんでしたが、対応ブラウザが増えたことにより実用的になりましたので紹介します。

今までの記法

「デバイスの幅が375px以上600px以下の場合にだけ適用するスタイル」を定義するには、複数のメディアクエリを使用する必要がありました。

@media (min-width: 375px) and (max-width: 600px) {...}

比較演算子を使った記法

Media Queries Level 4 で"range"型を持つ特性を使って以下のようにメディアクエリーを記述することができます。

@media (375px <= width <= 600px )  {...}

おまけ

論理代数(and, not, or)を使ったメディアクエリーも使える

not による特性の否定
not() を使用してメディア指定を囲むとその指定を否定します。
例えば、 not(hover) は端末でホバーができない場合に一致します。

@media (not(hover)) { ... }
4
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?