JSFiddle - React, Tailwind, and code Playground

HTML

<div class='ellipsis-text'>very very very very very very very long</div>

CSS

.ellipsis-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
width: 80px;
}