JSFiddle - React, Tailwind, and code Playground

HTML

<div class="text">
    A very looooooooong content to test ellipsis. A very looooooooong content to test ellipsis. A very looooooooong content to test ellipsis. A very loooooooong content to test ellipsis.
</div>

CSS

.text {
    width: 200px;
    height: 30px;
    display: block;
    overflow: hidden;
    border: 1px solid black;
    white-space: nowrap;
    line-height: 30px;
    text-overflow: ellipsis;
}