JSFiddle - React, Tailwind, and code Playground

HTML

<div class="ellipsis">hsdhhgasdhgasdgj</div><div>asdasd</div>
<div class="clear"></div>
<div class="ellipsis">asdasdasd</div><div>asdadsas</div>

CSS

.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
    letter-spacing: 1.6px;
}
div{
    float:left;
}
.clear {
clear:both
}