JSFiddle - React, Tailwind, and code Playground
by holden321
HTML
<div class="shortstory">
<img src="http://lorempixel.com/230/200" />
</div>
CSS
.shortstory {
display:block;
width:320px;
margin:10px;
float:left;
background:#fff;
box-shadow:0 1px 3px #c8c8c8;
color:#939393;
font-family : OpenSans;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
}
.shortstory img {
width:320px;
max-height:320px;
display:block;
}