JSFiddle - React, Tailwind, and code Playground
by Levente Gal
HTML
<div class="row">
<div class="cell" style="width:100px;">Should not fit in 100px</div>
</div>
CSS
.row {
display: table-row;
}
.cell {
display: table-cell;
border: solid 1px #DADADA;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
JavaScript
$('body').append('width = ' + $('.cell').width());