JSFiddle - React, Tailwind, and code Playground

HTML

<div id="box1"> </div>
<div id="box2"> <p>150x150</p</div>

CSS

div#box1 {
    width:150px;
    height: 100px;
    background-color:beige;
}

div#box2 {
    width:150px;
    height: 150px;
    background-color:orange;
    border:1px solid black;
    position:absolute;
    top:-50px;
    right:400px;
}

div#box2 p {
    margin-top:100px;
    margin-left:50px;
}

JavaScript

$('#box2').animate({top:0})