media quiery code example
Example 1: css media queries
@media only screen and (max-width: 1200px){
}
@media only screen and (max-width: 600px){
}
@media only screen and (max-width: 425px){
}
Example 2: media query
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}
Example 3: media query
// Example media query syntax
@media only screen and (min-width: 768px) {
.my-example-class {
padding: 50px;
}
}
// Best Practice
// keep default style for smallest screen size (portrait mobile, below 576px)
// and then proceed in assending order with media query like below
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
// so on ...
Example 4: media query
@media only screen and (max-width: 600px) {}
@media only screen and (min-width: 600px) {}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}
Example 5: css media queries
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
}
@media only screen and (device-width: 320px) and (orientation: portrait) {
}
@media only screen and (device-width: 480px) and (orientation: landscape) {
}
@media only screen and (min-device-width: 480px) and (max-device-width: 800px) {
}
@media only screen and (min-device-width: 640px) and (max-device-width: 960px) {
}
@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) {
}
@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) and (orientation: landscape) {
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
}
@media only screen and (min-device-width: 1536px) and (max-device-width: 2048px) {
}
@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1920px) {
}
@media screen and (max-width: 1600px) {
}
Example 6: media query
@media only screen and (max-width: 600px) {
.class {
// Your CSS
}
}