JSFiddle - React, Tailwind, and code Playground

by pradeep

HTML

<div id="vh">Div to be aligned vertically</div>

CSS

#vh {
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    padding: 25px;
    width: 200px;
    height: 200px;
    background: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}