Created
June 27, 2016 07:04
-
-
Save YasuakiHirano/db2b997ccefb7c3bd97942a40de87925 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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