What worked for me was adding a div around the content.
Originally i had this. Css applied to the td had no effect.
|
@Html.DisplayFor(modelItem => item.Message)
|
Then I wrapped the content in a div and the css worked as expected
|
@Html.DisplayFor(modelItem => item.Message)
|