Force Wrap in a Table cell

Hi folkz, just wondering if someone can help me force word wrap on this cell, I have some long content that causes a scroll bar. I'd rather that the cell just grow in height and the text stayed on screen.

<div class="rz-data-grid rz-datatable" style="width: 100%;">
    <div class="rz-data-grid-data">
        <table class="rz-grid-table wrap">
            <tbody>
            <tr>
               <td>Cause of Death</td>
               <td class=""><span class="rz-cell-data text-nowrap">@((MarkupString)CoD)</span></td>
           </tr>
           </tbody>
       </table>
   </div>
</div>

See attached image

Check this thread:

1 Like

That worked, much appreciated.