JSFiddle - React, Tailwind, and code Playground
by isherwood
HTML
<div id="select" class="height20">Select div</div>
CSS
#select {
background: #eee;
height: 50px;
}
#select.height20 {
height: 20px;
transition: height 0.2s;
}
#select.height200 {
height: 200px;
transition: height 0.2s;
}
JavaScript
$('#select').click(function () {
$(this).toggleClass('height20 height200')
});