You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorting does not work if the media is moved to two lines
@media (min-width: 48em)
and (max-width: 59.999em) {
body {
border: solid 10px blue;
}
}
@media (min-width: 40em)
and (max-width: 47.999em) {
body {
border: solid 10px black;
}
}
@media (min-width: 15em)
and (max-width: 47.999em) {
body {
border: solid 10px red;
}
}
if input
@media (min-width: 48em) and (max-width: 59.999em) {
body {
border: solid 10px blue;
}
}
@media (min-width: 40em) and (max-width: 47.999em) {
body {
border: solid 10px black;
}
}
@media (min-width: 15em) and (max-width: 47.999em) {
body {
border: solid 10px red;
}
}
work correct
@media (min-width: 15em) and (max-width: 47.999em) {
body {
border: solid 10px red
}
}
@media (min-width: 40em) and (max-width: 47.999em) {
body {
border: solid 10px black
}
}
@media (min-width: 48em) and (max-width: 59.999em) {
body {
border: solid 10px blue
}
}
The text was updated successfully, but these errors were encountered:
Sorting does not work if the media is moved to two lines
if input
work correct
The text was updated successfully, but these errors were encountered: