Overwrite !important rule set within media-query? !unimportant?
问题 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? 回答1: No; the way the cascade works, there is no way to undo an !important declaration or make it "unimportant". This is regardless of whether the