← Back

declaration-no-important warn

Disallow !important within declarations.

Examples

❌  Incorrect

a {
    color: #FFFFFF !important;
}

a {
    color: #FFFFFF!important;
}

a {
    color: #FFFFFF ! important;
}

✅  Correct

a {
    color: #ffffff;
}