Last active
May 31, 2017 02:42
-
-
Save lizardking8610/8796fdd91b008474a7d3339731619abd to your computer and use it in GitHub Desktop.
Ipad 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 only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { | |
.largewhite br { content: ' '; } | |
} |
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 only screen and (device-width: 768px) { | |
/* For general iPad layouts */ | |
} | |
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { | |
/* For portrait layouts only */ | |
} | |
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) { | |
/* For landscape layouts only */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
`@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
}` Fixes off center widget elements on ipad portrait that contain breakpoints for showcase pro