JSFiddle - React, Tailwind, and code Playground

by Brodingo

HTML

<div>

CSS

div {
    width: 200px;
    height: 200px;
    background: steelblue;
    position: relative;
    top: 50px;
    -webkit-transition: all .2s ease;
	   -moz-transition: all .2s ease;
	    -ms-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;
}

.top {
    top: 0;
}

JavaScript

$('div').click(function(){
    $(this).toggleClass('top');
});