how to make the max width and min width in media query at the same time code example
Example 1: media query min and max
@media only screen and (max-width: 600px) {...}
@media only screen and (min-width: 600px) {...}
@media only screen and (max-width: 600px) and (min-width: 400px) {...}
Example 2: media query min max
@media screen and (min-width: 200px) and (max-width: 640px) {
.bloc {
display:block;
clear:both;
}
}
Example 3: what is a max and min width media query
@media only screen and (max-width: 600px) {...}
@media only screen and (min-width: 600px) {...}