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;
}