InterviewSolution
Saved Bookmarks
| 1. |
What does !important mean in CSS? |
|
Answer» The style is having the IMPORTANT will have the highest precedence and it OVERRIDES the cascaded PROPERTY. p { color: red !important; } #thing { color: green; } <p id="thing">Will be RED.</p> |
|