JSFiddle - React, Tailwind, and code Playground

by Manish Gupta

HTML

<div class="wj-cell">
  <div class="wj-content">
    This is some long text that will not fit in the box.
  </div>
</div>

CSS

.wj-cell{
    width: 100px; 
    height: 50px;
    display:table;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
    border: 1px solid #000000;
}
.wj-content{
	  display:table-cell;
    vertical-align:middle;
}