JSFiddle - React, Tailwind, and code Playground
HTML
<div style="left: 50px;">
Id like to be centered.
</div>
<div style="left: 200px;">
I would like also like to be centerd. Even though I have long text. I would like to be centerd horizontally and vertically. Is that possible. Oh I wish it would work.
</div>
CSS
div
{
position: absolute;
border-radius: 50%;
top: 50px;
width: 100px;
height: 100px;
background: yellow;
overflow: hidden;
text-align: center;
display: flex;
align-items: center;
}