JSFiddle - React, Tailwind, and code Playground

by geekrose Lee

HTML

<button>Start Animation</button>

CSS

button {
min-width:0px;
height: 22px;
    display:block;
    padding:0px;
    border:0px;
}

JavaScript

$("button").click(function(){
    $("button").animate({width:'0px'});
  });