JSFiddle - React, Tailwind, and code Playground
by jorgeluis
HTML
<div class="container">
<div class="wrap">
<div>
Well hello there
</div>
<div>
How are you?
</div>
</div>
</div>
CSS
.container {
position: relative;
width: 18%;
min-width: 60px;
background: lightpink;
height: 200px;
}
.wrap {
position: absolute;
left: 50%;
top: 50%;
white-space: nowrap;
min-width: 50px;
transform: translate(-50%, -50%);
background: rgba(0 0 0 / 0.2);
padding: 4px;
}
.wrap > div { white-space: nowrap; }