warn
declaration-no-importantDisallow !important within declarations.
Examples
❌ Incorrect
a {
color: #FFFFFF !important;
}
a {
color: #FFFFFF!important;
}
a {
color: #FFFFFF ! important;
}
✅ Correct
a {
color: #ffffff;
}
Disallow !important within declarations.
❌ Incorrect
a {
color: #FFFFFF !important;
}
a {
color: #FFFFFF!important;
}
a {
color: #FFFFFF ! important;
}
✅ Correct
a {
color: #ffffff;
}