JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>Lorem ipsum</td>
    </tr>
</table>

CSS

td {
    height: 500px;
    width: 20px;
    -webkit-transform:rotate(270deg);
    -moz-transform:rotate(270deg);
    -ms-transform:rotate(270deg);
    -o-transform:rotate(270deg);
    transform:rotate(270deg);
    border: 1px solid;
}