JSFiddle - React, Tailwind, and code Playground
by TJ VanToll
HTML
<link rel=stylesheet type=text/css href="//code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css">
<script>$.uiBackCompat=false; // force jquery.ui 1.9</script>
<script src="//code.jquery.com/ui/1.9.1/jquery-ui.min.js"></script>
<style>
#test {color:#fff; font-size:20pt !important; background:linear-gradient(#d00,#800); background:-webkit-linear-gradient(#d00,#800);}
.test {color:#fff; font-size:20pt !important; background:linear-gradient(#d00,#800); background:-webkit-linear-gradient(#d00,#800);}
</style>
<button id=test>from id</button>
<button class=test>from class</button>
JavaScript
$("button").button();