JSFiddle - React, Tailwind, and code Playground
HTML
<div class="derecha"></div>
<div class="izquierda"></div>
<div class="izquierda rojo"></div>
CSS
.derecha {
float: right;
height: 400px;
width: 50%;
background: blue;
}
.izquierda {
height: 200px;
width: 50%;
background: green;
}
.rojo {
background: red;
}