@Media Screen And (Max-Width 600px) Not Working

@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">

 

Leave a Comment