I have a following td block which present data as follows:
My name is Ramya and
I love football.
I work for ABC Company.
<td style="text-align: left;overflow-wrap:break-word;width:50px;">
@Html.DisplayFor(modelItem => item.Text)
</td>
I want my td to display data like this:
My name is Ramya and
I love football.
I work for ABC
Company.
Which CSS attribute should I use to achieve the result? All the lines which are wrapped should contain some whitespaces.