Home › Forums › CSS › CSS media queries not overriding › Reply To: CSS media queries not overriding
February 16, 2016 at 3:39 am
#238082
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) {
}