JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <img src="http://placehold.it/100x100" />
    <span>hello</span>
</div>

CSS

div {
    display: table;
}
img {
    display: table-cell;
    padding:20px;
    background: red;
}
span {
    display: table-cell;
    width: 300px;
    background-color: blue;
    vertical-align: top;
    height: 100%;
}