JSFiddle - React, Tailwind, and code Playground
by kodjoe mambi
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<div class="row">
<div class="col span-1-of-3">
<span class="icon-small">
<i class="fa fa-television"></i>
<h5>Mobile & Tablets Ready</h5>
</span>
</div>
<div class="col span-1-of-3">
<span class="icon-small">
<i class="fa fa-mobile-phone"></i>
<h5>For the iPhone, iPad & Android</h5>
</span>
</div>
<div class="col span-1-of-3">
<span class="icon-small">
<i class="fa fa-image"></i>
<h5>Infographics, site designs and more</h5>
</span>
</div>
</div>
CSS
.icon-small i {
float: left;
margin-right: 10px;
height: 38px;
width: 38px;
color: #000;
text-align: center;
vertical-align: middle;
padding-top: 12px;
}
.icon-small + p {
clear: left;
margin-top: 15px;
}
.icon-small h4,
.icon-small h5 {
text-align: left;
}