Imagine this …
@media screen and (min-width: 55.5em) {
aside[role="attend"] {
margin:0 !important;
}
}
@media screen and (min-width: 61.5em) {
aside[role="attend"] {
margin:0; /* still !important but shouldn't be */
}
}
Is there any way to overwrite or "remove" the !important
declaration so it's not still applied within the higher min-width
value?