Join WhatsApp ChannelJoin Now

Responsive Media Queries All Devices

Hi Dev,

Today, i we will show you responsive media queries all devices. This article will give you simple example of responsive media queries all devices. you will learn responsive media queries all devices. So let’s follow few step to create example of responsive media queries all devices.

HDTV Media Queries, 1920×1080

@media screen and (min-width: 1080px) and (max-width: 1920px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

Widescreen Media Queries, 1280×800

@media screen and (min-width: 800px) and (max-width: 1280px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

iPad Landscape & Portrait Media Queries, 1024×768

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

iPad Landscape Media Queries, 1024×768

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

iPad Portrait Media Queries, 768×1024

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

Small Tablet Landscape/Portrait Media Queries, 800×600

@media screen and (min-width: 600px) and (max-width: 800px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

iPhone5/Android landscape (& narrow browser) Media Queries, 568×320

@media screen and (min-width: 320px) and (max-width:568px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

iPhone4/Android landscape (& narrow browser) Media Queries, 480×320

@media screen and (min-width: 320px) and (max-width:480px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

iPhone4/Android portrait Media Queries, 320

@media screen and (max-width:320px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

Smaller devices, Android Landscape Media Queries, 320×240

@media screen and (min-width:240px) and (max-width:320px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

Smaller devices, Android Portrait Media Queries, 240×320

@media screen and (max-width:240px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

Recommended Posts