JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://www.greensock.com/js/src/TweenMax.min.js"></script>
<div class="test">this will change color on hover</div>
<div class="test" style="color:blue">this won't</div>
CSS
.test{
font-size:24px;
font-family:Arial, Helvetica, Verdana;
font-weight:100;
}
.test:hover{
color:red;
}