!important vs Inline Style
Preview
Code
<style>
p{
color:red !important;
}
</style>
<p style="color:blue;">Important rule wins.</p>
<style>
p{
color:red !important;
}
</style>
<p style="color:blue;">Important rule wins.</p>