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.
To select elements from the DOM, we use browsers APIs like getElementsBy*. To make our lives easier, the result of these methods are Live. What this means is th…