Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS media queries not overriding Reply To: CSS media queries not overriding

#238082
amrin
Participant

Would the below given media query breakpoints override one another?

/* Extra small devices (phones, up to 480px) /
@media screen and (max-width: 767px) {
}
/
Small devices (tablets, 768px and up) /
@media (min-width: 768px) and (max-width: 991px) {
}
/
tablets/desktops and up ———– /
@media (min-width: 992px) and (max-width: 1199px) {
}
/
large desktops and up ———– */
@media screen and (min-width: 1200px) {
}