LoginSignup
5
6

More than 5 years have passed since last update.

Retinaディスプレイを分岐するmixin

Posted at
@mixin media-retina() {
  @media only screen and (min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    @content;
  }
}
// 使い方
.aaaa {
  @include media-retina {
    background-image: url(aaaa@2x.png);
  }
}

device-pixel-ratioで分岐するMedia Queryを内包しているだけですが、
コードを短くできます。

5
6
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
5
6