JSFiddle - React, Tailwind, and code Playground

by amkrtchyan

HTML

<div id="block1" class="block1">
    <div id="block2" class="block2">
    </div>
</div>

CSS

.block1
{
    width: 500px;
    background: green;
    vertical-align: middle;
    text-align: center;
}

.block2
{
    width: 50px;
    height: 50px;
    background: white;
    display: inline-block;
}

.height200
{
    height: 200px;
    line-height: 200px;
}

.height350
{
    height: 350px;
    line-height: 350px;    
}