JSFiddle - React, Tailwind, and code Playground
by Ajey
HTML
<div class="box">
<div class="text">
Ajey Ajey Ajey Ajey Ajey
</div>
</div>
CSS
.box {
background: red;
width: 100px;
height: 100px;
display: flex;
align-items: center;
flex-direction: 'column';
}
.text {
justify-content: center;
text-align: center;
flex: 1;
}