I have to article related columns in label field problem is that I cant Justify the Article Heading which should not be more than 30 characters in length when I display it as a sort of ticker. Client requirement is to make the article heading "Justify". I tried but I can't make it justify as it is a single line heading.
Sample example of the code
.Desc4x4
{
text-align:justify;
font-size:8px;
font-family:Tahoma, Geneva, sans-serif;
font-weight:bold;
padding-left:0px;
padding-top:0px;
color:White;
width:194px;
height:34px;
vertical-align:top;
}
<div >
<asp:Label ID="lblTopFourDesc" runat="server" Text='<%# Eval("ArticleDesc")%>'> </asp:Label>
</div>
My question is can we justify single line items, I tried same in MS Word I was not able to justify single line heading but when same exceeded to two line it automatically justified the text.
What should I do to Justify the text or it is not possible?