JSFiddle - React, Tailwind, and code Playground

HTML

<div id="test">
    This is some short content to demonstrate the css-property
    text-overflow
</div>

CSS

#test{
    width:100px;
    height:50px;
    border:1px solid red;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;   
}