All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rules.scsslint.ImportantRule.html Maven / Gradle / Ivy

Details

Avoid using !important in properties. It is usually indicative of a misunderstanding of CSS specificity and can lead to brittle code.

Bad

p {
color: #f00 !important;
}

Good

p {
color: #f00;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy