html - when to use !important property in css? -


  #div p {     color: red !important; } ... #div p {     color: blue; } 

i understand how !important works, in case div render red because has priority (!important). can't still figure out appropriate situation use it. know example !important saves day?


Comments