JSFiddle - React, Tailwind, and code Playground
HTML
<div class="block">
<h2>TITLE</h2><br/>
<img src="http://placehold.it/190x60" width="190px" height="60px"/>
<p>Hello world</p>
</div>
CSS
.block {
position:relative;
width:190px;
height:190px;
background-color:FFF;
margin:10px;
float:left;
left:-10px;
text-align: center;
padding:10px;
border:solid 1px #CCC;
font-size:small;
}
.block p {
text-align: left;
}