JSFiddle - React, Tailwind, and code Playground

by I Sang Hyeon

HTML

<table id="t">

<tr>
  <td>as</td>
  <td>123123123123123123123123123</td>
</tr>
</table>

CSS

#t{
  border : solid 1px;
  width:20px;
}
#t > td
{
  text-overflow:ellipsis;
      white-space:nowrap;
}