CSS Class :-
How to use in RadGrid.
How To Use In Label.
By above example you can able to break the RadGrid's column or any Label if their text width exceed the 120px.
Note : It worked on both cases is space is available (in text/content) or not.
.breakWord120 { max-width: 120px !important; word-break: break-all !important; word-wrap: break-word !important; vertical-align: top; line-height: 15px; }
How to use in RadGrid.
<telerik:GridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name" ItemStyle-CssClass="breakWord120"></telerik:GridBoundColumn>
<asp:Label ID="Label1" runat="server" CssClass="breakWord120"></asp:Label>
Note : It worked on both cases is space is available (in text/content) or not.