rodrigobertin
1/8/2013 - 8:28 PM

Media Query Apple Devices

Media Query Apple Devices

@media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
/*iPad horizontal*/

}

@media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
/*iPad Vertical*/

}

@media (max-device-width: 480px) and (orientation: portrait) {
/*iPhone horizontal*/

}

@media (max-device-width: 480px) and (orientation: landscape) {
/*iPhone vertical*/

}