JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<body>
    <div class="box">element 1</div>
    <div class="box" style="left: 20px; top: 10px; background-color: red;">element 2</div>
    <style>
      .box {
        background-color: green;
        position: absolute;
        width: 100px;
        heght: 100px;
        border: 1px sold red;
      }
    </style>
</body>
</html>