Inline styles have the highest priority of all CSS. In general, I would recommend you avoid using them and place your CSS declarations in external files. However, you may not have that luxury if you are working on a legacy system or do not have direct access to the HTML code.
HTML
<div style="background: blue;">
The inline styles for this div should make it red.
</div>
0 Comment(s)