Created
November 27, 2012 01:41
-
-
Save moritamoriko/4151857 to your computer and use it in GitHub Desktop.
This file contains 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
/*Max Width*/ | |
/*クラスXXXXXXが指定したサイズ(Npx)より小さい場合にスタイルが適用される*/ | |
@media screen and (max-width: Npx) { | |
.XXXXXX { | |
background: #F9C; | |
} | |
} | |
/*Min Width*/ | |
/*クラスXXXXXXが指定したサイズ(Npx)より大きい場合にスタイルが適用される*/ | |
@media screen and (min-width: Npx) { | |
.XXXXXX { | |
background: #F9C; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment