philchanet
4/13/2017 - 8:39 AM

Override inline styles with Css

Override inline styles with Css

<div style="background: red;">
    The inline styles for this div should make it red.
</div>
div[style] {
   background: yellow !important;
}