JSFiddle - React, Tailwind, and code Playground
by zoe chen
HTML
<div class="button">
Button Test
</div>
<div class="button button1">
Button Test1
</div>
CSS
.button {
background-color: #007AFF;
padding: 0 36px;
line-height: 40px;
width: 100px;
cursor: pointer;
border-radius: 3px;
color: #fff;
}
.button1 {
transition: all .15s ease-out;
}
.button:hover {
background-color: #75B7FF;
}
.button:active {
background-color: #006BE0;
}