JSFiddle - React, Tailwind, and code Playground
by jack_pallot
HTML
<a href="" class="button">I'm a button!</a>
CSS
body {
font-family: helvetica, arial;
}
.button {
width: 200px;
display: block;
text-align: center;
padding: 15px;
background: lightblue;
color: white;
text-decoration: none;
}
.button:hover {
background: blue;
color: white;
text-decoration: none;
}