CSS has a feature called !important. What it does is force a property to be used, regardless of other properties that are more specific. It can be very handy.
Recently, I needed to create a function that fades from one color to the other. CSS3 makes the job very easy by making use of the transition property. However I…