Answers for "@media screen and (max-width 600px) not working"

CSS
1

@media screen and (max-width 600px) not working

@media only screen and (min-width: 600px) {
    /*anything you want to do*/ 
}

/* Preferably, also add this to your head - */
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Posted by: Guest on February-20-2022

Code answers related to "@media screen and (max-width 600px) not working"

Browse Popular Code Answers by Language