make css attribute important code example
Example: css important
#content ul li {
color : red;
}
ul li {
color : blue !important; /* overrides the red color */
}
#content ul li {
color : red;
}
ul li {
color : blue !important; /* overrides the red color */
}