JSFiddle - React, Tailwind, and code Playground
HTML
<div style="width: 900px; margin: 0 auto;display:table-cell; border: 1px solid red;">
<div class="row">
<div class="col-md-4 tableColumnDiv">
<img src="" alt="image"> Some content here. Hello stackoverflow!
</div>
<div class="col-md-8 tableColumnDiv">
Some content here. Hello world!
</div>
</div>
<div class="row">
<div class="col-md-4 tableColumnDiv">
<img src="" alt="image"> Some content here. Hello stackoverflow!
</div>
<div class="col-md-8 tableColumnDiv">
Some content here. Hello world!
</div>
</div>
<div class="row">
<div class="col-md-4 tableColumnDiv">
<img src="" alt="image"> Some content here. Hello stackoverflow!
</div>
<div class="col-md-8 tableColumnDiv">
Some content here. Hello world!
</div>
</div>
</div>
CSS
/* CSS used here will be applied after bootstrap.css */
.image-column {
border: 1px solid black;
}
.tableColumnDiv{
display:table-cell;
border: 1px solid black;
}