JSFiddle - React, Tailwind, and code Playground
by Vadim
HTML
<div class="row">
<div class="col-md-8"><img class="img-fluid" src="https://via.placeholder.com/300" /></div>
<div class="col-md-4 text">TEXT</div>
</div>
CSS
.row {
display: flex;
}
.col-md-4 {
width: 33.3333%;
}
.col-md-8 {
width: 66.6666%;
}
img {
display: block;
}
.text {
background-color: red;
color: white;
}