JSFiddle - React, Tailwind, and code Playground

by Dipak1991

HTML

<div class="outer">
    <div class="inner"></div>
</div>

CSS

html, body {
    height: 100%;
}
.outer {
    height: 100%;
    width: 100%;
    background-color: yellow;
    position: relative;
}
.inner {
    width: 50px;
    height: 100px;    
    background-color: red;
    position: absolute;
    top:0;    
    margin: 0 auto;
    bottom:0;
    left:0;
    right:0;
}