Media quary max and min width not working

the max and min width text in media quary is not turning blue and not working .

@gokul1300202002 ,

Share me the code here.

@athiras199623 ,
@media (min-width:400px) and (max-width:1500px){
.navigation{
display: none;
}
}

1 Like

@gokul1300202002 ,

Use this way

@media only screen and (min-width: 400px) and (max-width: 1500px){
 .navigation{
         display: none;
                  }
}

@athiras199623 ,
thank you mam

1 Like