JSFiddle - React, Tailwind, and code Playground

HTML

<div class="div">aaa</div>
<div class="nav">bbb</div>

CSS

.div {
    position: absolute;
    top: 150px;
    left: 50px;
    height: 100;
    width: 100;
    background-color: red;
}

.nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    background-color: green;
}

JavaScript

$( '.nav' ).click(function(){
    $('.div').animate({
        left: '+=' + 100});
           });