JSFiddle - React, Tailwind, and code Playground

by Bahman ParsaManesh

HTML

<table>
  <tr>
    <td><span>some text ...</span></td>
  </tr>
</table>

CSS

td{
  border: 1px solid black;
  width: 200px;
  padding: 40px 50px;
}

td span {
  padding: 0px 20px;
}

td:after{
  content: '';
  border-right: 2px solid grey;
  padding:30px 0;
}