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