JSFiddle - React, Tailwind, and code Playground

by FiNGAHOLiC

HTML

<div class="parent-div">
  <div class="text-div">This is text I'd like to truncate when space doesn't permit</div>
</div>

CSS

.parent-div {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding: 0 40px;
}

.text-div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}