JSFiddle - React, Tailwind, and code Playground

by venkateshwar

HTML

<div class="container">
    <div class="left"></div>
    <div class="right"></div>
</div>

CSS

body, html {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.left {
    margin-right: 100px;
    background-color: green;
}
.right {
    width: 100px;
    background-color: red;
    position: absolute;
    top: 0px;
    right: 0px;
}
.left, .right {
    height: 50px;
}
.container {
    position: relative;
}