JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div class="left">
<div class="right"></div>
</div>
</div>
CSS
.wrapper {
width: 400px;
overflow: hidden;
}
.left {
width: 299px;
border-right: solid 1px black;
background: grey;
float: left;
margin-right:100px;
}
.right {
width: 100px;
float: right;
background: yellow;
margin-right:-102px;
}
.left, .right {height: 500px;}