Skip to content

Instantly share code, notes, and snippets.

@YasuakiHirano
Created June 27, 2016 07:04
Show Gist options
  • Save YasuakiHirano/db2b997ccefb7c3bd97942a40de87925 to your computer and use it in GitHub Desktop.
Save YasuakiHirano/db2b997ccefb7c3bd97942a40de87925 to your computer and use it in GitHub Desktop.
body {
background:black;
}
/*-- 上記以外 -*/
@media screen and (max-width: 1024px) {
body {
background-color:olive;
}
}
/*-- 768px以下はタブレット&スマホ 基本これのみでよさそう--*/
@media screen and (max-width: 768px) {
body {
background-color:blue;
}
}
@media screen and (max-width: 480px) {
body {
background-color:cyan;
}
}
@media screen and (max-width: 320px) {
body {
background-color:gold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment