JSFiddle - React, Tailwind, and code Playground

by Kitson Broadhurst

HTML

<link rel="stylesheet" href="http://enhanceddd.com/css/bootstrap.min.css">
<div class="slide">
<div class="container">
    <div class="row">
         <div class="logo col-md-4 col-md-offset-4">
             <div class="helper">
                 <span>Test</span>
             </div>
         </div>
    </div>
</div>
</div>

CSS

.logo {
 border: solid;
 border-color: red;
 border-width: 5px;
    height: 200px;
}
.helper{
background:#ccc;
width:100%;
height:100%;
text-align:center;
display:table;
}
span{
display:table-cell;
vertical-align:middle;
}