JSFiddle - React, Tailwind, and code Playground

by bizamajig

HTML

<div>eererer</div>

CSS

div {
    background-color:red;
    width: 640px;
    margin:auto;
    margin-top: 300px;
}

JavaScript

$(function(){

    $('div').animate({'margin-top': '50px'}, 1000);
    
});