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 {
position: absolute;
left: 0px;
right: 100px;
background-color: green;
}
.right {
width: 100px;
background-color: red;
float: right;
}
.left, .right {
height: 50px;
}