@media screen and (max-width: 600px) 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 screen and (max-width
@media screen and (min-width: 769px) {
}
@media screen and (min-device-width: 481px) and (max-device-width: 768px) {
}
@media only screen and (max-device-width: 480px) {
}
Example 3: css media screen
@media (max-width: 991px){
.mobile{
display: block;
}
}
Example 4: what is a max and min width media query
@media only screen and (max-width: 600px) {...}
@media only screen and (min-width: 600px) {...}