Created
June 26, 2012 08:31
-
-
Save ajaxray/2994394 to your computer and use it in GitHub Desktop.
CSS3 Tricks
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
/* Media query and conditional styles | |
*---------------------------------------------*/ | |
/*styles for 800px and up!*/ | |
@media only screen and (min-width: 800px) { | |
body{background-color: #666; } | |
#container{width: 320px; min-height: 460px; background-color: #fff; margin: 0px auto 60px;} | |
}/*/mediaquery*/ | |
/* iPhone 4, Opera Mobile 11 and other high pixel ratio devices ----------- */ | |
@media | |
only screen and (-webkit-min-device-pixel-ratio: 1.5), | |
only screen and (-o-min-device-pixel-ratio: 3/2), | |
only screen and (min--moz-device-pixel-ratio: 1.5), | |
only screen and (min-device-pixel-ratio: 1.5) { | |
#container{background-color: #fff; margin: 0 auto; padding-bottom: 60px} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment