JSFiddle - React, Tailwind, and code Playground
by sambaldwin
HTML
<button class="run-css">CSS slideToggle</button>
<div class="cont">Toggle this div</div>
CSS
.cont {
width: 100px;
height: 100px;
background-color: #EEE;
-webkit-transition: height .3s linear;
}
.toggled {
overflow: hidden;
padding-top: 0;
padding-bottom: 0;
height: 0;
border-width: 0;
}
JavaScript
$('.run-css').click(function() {
$('.cont').toggleClass('toggled');
});