JSFiddle - React, Tailwind, and code Playground
CSS
div {
width: 50px;
height: 50px;
background: red;
position: relative;
left: 0;
top: 0;
cursor: pointer;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.move {
left: 100px;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
JavaScript
$('div').click(function(){
$(this).toggleClass('move');
});