Multiple !important Rules
Preview
Code
<style>
p{
color:red !important;
}
.text{
color:blue !important;
}
</style>
<p class="text">Class rule wins.</p>
<style>
p{
color:red !important;
}
.text{
color:blue !important;
}
</style>
<p class="text">Class rule wins.</p>