JSFiddle - React, Tailwind, and code Playground

HTML

<div class="table">
      <div class="cell">
        <img src="http://jsfiddle.net/img/logo.png"/>
       </div>    
    </div>
    
    <div class="table">
      <div class="cell">
        <span> text </span>
      </div>    
    </div>

CSS

.table{
    display: table;
    margin:10px;    
}

.cell{
    width:200px;
    height:200px;
    background-color:red;
    display:table-cell;
    vertical-align: middle;

 }

img, span{
   display:table-cell;
}