JSFiddle - React, Tailwind, and code Playground

by eyeamaman

HTML

<button><div class="content">I'm a button</div></button>

CSS

button {
    background: #fc0;
    border: 0 none;
    cursor: pointer;
    outline: none;
    vertical-align: top;
    padding: 0;
}
button div.content {
    position: relative;
    top: 0; left: 0;
    background: #f00;
    border: 0;
}
button:active div {
    background: green;
}