JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="row">
<div class="info"></div>
<div class="picture">
<img src="http://www.rankopedia.com/CandidatePix/28613.gif" />
</div>
</div>
</div>
CSS
div.container {
width: 100%;
background-color: red;
display: table;
}
div.row {
display: table-row;
}
div.container > div.row > div {
display: table-cell;
}
div.info {
background-color: blue;
width: 100px;
}
div.picture > img {
max-height: 150px;
display: block;
}