JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
td.test div
{
white-space: nowrap;
width: 70px;
overflow: hidden;
border: 1px solid #000000;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<table>
<tr>
<td class="test">
<div>This is some long text that will not fit in the box</div>
</td>
</tr>
</table>
</body>
</html>