Media Query In W3school Code Example


Example 1: css media queries


@media only screen and (max-width: 1200px){
/*Tablets [601px -> 1200px]*/
}
@media only screen and (max-width: 600px){
/*Big smartphones [426px -> 600px]*/
}
@media only screen and (max-width: 425px){
/*Small smartphones [325px -> 425px]*/
}

Example 2: media query


@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
}

Example 3: media query in css


@media screen and (min-width: 374px){
section#rent_sectionn {
padding: 0 20px !important;
}
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools