Anular estilos en línea con CSS
<div style="background: red;">
The inline styles for this div should make it red.
</div>
div[style] {
background: yellow !important;
}
Noruzzaman Rubel