JSFiddle - React, Tailwind, and code Playground

by bgrins

HTML

<div class="outer">
    <div class="inner">
        <label>html</label>
        <label> </label>
        <label> </label>
        <label>something.something.anything.other</label>
    </div>
</div>

CSS

.outer {
    border: solid 1px;
    padding: 10px;
    min-width: 50px;
    max-width: 100px;
}

.inner {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}