JSFiddle - React, Tailwind, and code Playground

by f1sherman

HTML

<span>
    some really really really long text
</span>

CSS

span {
    text-overflow: ellipsis;
    max-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}