Created
July 13, 2012 18:11
-
-
Save reactivepixel/3106399 to your computer and use it in GitHub Desktop.
Common Media Queries
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
/* Media Query: Smartphones (landscape) */ | |
@media only screen | |
and (min-width : 321px) { | |
/* Your styles go here... */ | |
} |
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
/* Media Query: Smartphones (portrait) */ | |
@media only screen | |
and (max-width : 320px) { | |
/* Your styles go here... */ | |
} |
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
/* Media Query: Smartphones (portrait and landscape) */ | |
@media only screen | |
and (min-width : 320px) | |
and (max-width : 480px) { | |
/* Your styles go here... */ | |
} |
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
/* Media Query: iPads (landscape) */ | |
@media only screen | |
and (min-width : 768px) | |
and (max-width : 1024px) | |
and (orientation : landscape) { | |
/* Your styles go here... */ | |
} |
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
/* Media Query: iPads (portrait) */ | |
@media only screen | |
and (min-width : 768px) | |
and (max-width : 1024px) | |
and (orientation : portrait) { | |
/* Your styles go here... */ | |
} |
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
/* Media Query: iPads (portrait and landscape) */ | |
@media only screen | |
and (min-width : 768px) | |
and (max-width : 1024px) { | |
/* Your styles go here... */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment