Answers for "why is my css media query not"

5

why my media query is not working

<meta content="width=device-width, initial-scale=1" name="viewport" />
Posted by: Guest on October-24-2020
3

@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 "why is my css media query not"

Browse Popular Code Answers by Language