CSS Responsive media queries


Below provided CSS responsive media queries for mobile, tabs, desktops

/*Mobile view*/

@media (min-width : 320px) and (max-width : 480px) {

// related CSS

}

/*Tab view*/

@media (min-width : 480px) and (max-width : 760px) {

// related CSS

}

/*Tab view*/

@media (min-width : 760px) and (max-width : 980px) {

// related CSS

}

/*Desktop view*/

@media (min-width : 980px) and (max-width : 1024px) {

// related CSS

}

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s