JSFiddle - React, Tailwind, and code Playground

HTML

<div class="block">
   <h2>TITLE</h2>
      <img src="http://placehold.it/190x60" width="190px" height="60px"/>
         <p>Hello world</p>
</div>
<div class="block">
   <h2>TITLE</h2>
      <img src="http://placehold.it/190x60" width="190px" height="60px"/>
         <p>Hello world</p>
</div>

CSS

* {
    margin:0;
    padding:0;
}
.block {
    position:relative;
    width:190px;
    height:190px;
    background-color:FFF;
    margin:10px;
    text-align: center;
    padding:10px;
    display:table-cell;
    vertical-align:middle;
    border:solid 1px #CCC;
    font-size:small;
}