<style> a{ background-color: yellow; } </style> <body> <a style="background-color: red">a</a> </body>
Ahora si le agregamos la etiqueta important
<style> a{ background-color: yellow !important; } </style> <body> <a style="background-color: red">a</a> </body>
En el primer ejemplo el elemento a es de color rojo, cuando agregamos important el color es sobreescrito por color amarillo.