JSFiddle - React, Tailwind, and code Playground
HTML
<div>some text</div>
<div><span class="text-overflow-center">some text that will overflow</span></div>
CSS
div {
display: block;
position: relative;
left: 100px;
width: 100px;
text-align: center;
white-space: nowrap;
border: 1px solid black;
background-color: silver;
}
.text-overflow-center {
margin-left: -100%;
margin-right: -100%;
text-align: center;
}