JSFiddle - React, Tailwind, and code Playground

by kevindev725

HTML

<table class="table">
  <tr>
    <td>
      <p class="text">
        This is what I want to show by using ellipsis. This is what I want to show by using ellipsis. This       is what I want to show by using ellipsis
      </p>
    </td>
  </tr>
</table>

CSS

p {
  max-width: 100%;
  /* width: 100%; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 50px;
  line-height: 50px;
}