JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tbody>
<tr>
<td><p> a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a</p></td>
<td id="b">b</td>
<td>c</td>
<td>d</td>
<td>e</td>
<td>f</td>
<td>g</td>
<td>h</td>
<td>i</td>
<td id="j">j</td>
<td>k</td>
</tr>
</tbody>
</table>
CSS
tr{
height:auto;
}
td{
overflow: auto;
display: inline-block;
vertical-align: top;
word-wrap: break-word;
background-color: #3399ff;
height: 100%;
width: 75px;
border: 1px solid black;
border-collapse: collapse;
}
td:nth-child(odd){
background-color: #1177dd;
}