What does !important mean in CSS? - Stack Overflow
The !important rule is a way to make your CSS cascade but also have the rules you feel are most crucial always be applied. A rule that has the !important property will always be applied no matter where that rule appears in the CSS document.
So, if you have the following:
.class { color:red !important; } .outerClass .class { color:blue; } Read full article from What does !important mean in CSS? - Stack Overflow
No comments:
Post a Comment