JSFiddle - React, Tailwind, and code Playground

by Mat

HTML

<div class="toolong">
    this text is just too loooooooooooooooooooooooooong
</div>

CSS

.toolong {
    width: 100%;
    overflow:hidden; 
    white-space:nowrap; 
    text-overflow: ellipsis;
}