JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td><div>опа-па</div></td>
        <td><div>опа-па <br> sdfsdf</div></td>
    </tr>
</table>

CSS

body{
background:#666;
}

table{
border-spacing:5px;
height:100%;    
}

td{
width:300px; 
background:#666;
padding:0;
border-top:1px solid #222;
border-bottom:1px solid #ccc;   
vertical-align:top;
}

div{  
height:100%;    
border-top:1px solid #ccc;
border-bottom:1px solid #222;    
}