JSFiddle - React, Tailwind, and code Playground

HTML

<div class="a">
    <div class="b">
        <div class="c">
        Here should go some text long enough to ellipsis the overflow
        </div>
    </div>
</div>

CSS

.a {
    border:black 1px solid;
    float: left;
    width: 122px;
    line-height: 14px;
}
.b {
    width:100%;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}
.c {
    line-height: 11px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space:nowrap;
}