Created
September 21, 2012 16:41
-
-
Save afragen/3762543 to your computer and use it in GitHub Desktop.
The Events Calendar: iOS CSS 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
/* iPad [portrait + landscape] and iPhone [portrait + landscape] */ | |
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) { | |
/* code here */ | |
} | |
/* iPad [portrait + landscape] */ | |
@media only screen and (device-width: 768px) { | |
/* code here */ | |
} | |
/* iPhone [portrait + landscape] */ | |
@media only screen and (max-device-width: 480px) { | |
/* code here */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment