Skip to content

Instantly share code, notes, and snippets.

View IamSAL's full-sized avatar
DayDreaming

Sheikh Salman IamSAL

DayDreaming
View GitHub Profile
@IamSAL
IamSAL / gist:56794adbd4c4c6268573025aa8f8c44f
Created December 22, 2020 20:51 — forked from Mikodes/gist:be9b9ce42e46c3d4ccb6
All Media queries for resolutions
/* (320x480) iPhone (Original, 3G, 3GS) */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
/* insert styles here */
}
/* (320x480) Smartphone, Portrait */
@media only screen and (device-width: 320px) and (orientation: portrait) {
/* insert styles here */
}