Remove !important declaration
If you're using !important
in places you shouldn't (which is most of the time), consider increasing the specifity and removing the rule instead.
If possible, just remove !important
altogether.
From:
To:
Why?
!important
is difficult to override and breaks the cascading nature of CSS.
Last updated
Was this helpful?