Remplacer les styles en ligne avec CSS

<div style="background: red;">
    The inline styles for this div should make it red.
</div>

div[style] {
   background: yellow !important;
}
Noruzzaman Rubel