JSFiddle - React, Tailwind, and code Playground

by kimgysen

HTML

<div class="outerDiv">
    <div class="innerDiv">
        <img src="http://www.ie.edu/business/imagenes/icon-social-linkedin.png">
        <p>This is a test</p>
    </div>
</div>

CSS

.outerDiv{
    display: table-cell;
    background-color: yellow;
    width: auto; 
    height: auto;
    vertical-align: middle;
    text-align: center;
}

.innerDiv{
    display: inline-block;
    background-color: red; 
    width: 100px;
    height: 100px;
    margin: 20px;
}