JSFiddle - React, Tailwind, and code Playground

!important

HTML

<style>
    #test h1
    {
         color:blue;
        !important;
    }
</style>

<div id="test">
    <h1>Hello World! This should be blue.</h1>
</div>

CSS

#test h1 
{
     color:red !important;
}