JSFiddle - React, Tailwind, and code Playground
by dmitri14
HTML
<div>vertically centered text</div>
CSS
div
{
height: 200px;
line-height: 200px; /* <-- this is what you must define */
vertical-align: middle;
border: 1px solid black;
}
by dmitri14
<div>vertically centered text</div>
div
{
height: 200px;
line-height: 200px; /* <-- this is what you must define */
vertical-align: middle;
border: 1px solid black;
}