Slide 13
Slide 13 text
How?
@media only screen and (min-width: 768px) {
/* Your CSS goes here for iPad and up */
}
@media only screen and (max-width: 320px) {
/* Your CSS goes here for portrait phones */
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen
and (min-device-pixel-ratio: 2) {
/* Retina Display!!! */
}