Hi I have a class Container
so whenever I am trying to give it a width:1400px
and test on 1900*1080 screen it always pick the wrong media query. i.e. 1200px screen property
@media (min-width: 1350px) {
.container {
width: 1400px;
}
}
@media (min-width: 1200px) {
.container {
width: 1140px;
}
}
I have two media queries for different screens but on the bigger screen it still picks the smallest media query