12
13

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 5 years have passed since last update.

sassでmediaQueryを簡潔に書く

Posted at

例えば、

value.sass
$sp: "only screen and (max-width: 800px), (max-device-width: 800px)"

という風に条件を変数に定義しておいて、
使う場面で

main.sass
@media #{$sp}
	width: 320px

というふうに書けばmediaQueryもスッキリ!

12
13
2

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
12
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?