Monday 11 November 2013

alignment issue words without having space with browser compatability

Add this css class 
.wordbreak
{
    word-break:break-all;
    word-wrap:break-word;
    -ms-word-break:break-all;
    -ms-word-wrap:break-word;
    overflow-wrap:break-word;
}

In View
<td  class="wbrk">
                    @Html.LabelFor(model => model.Name)
                </td>