T Tina Dec 8, 2004 #1 Is there any way to get the text property to right justify in controls like Hyperlink buttons and labels? Thanks, T
Is there any way to get the text property to right justify in controls like Hyperlink buttons and labels? Thanks, T
A aa7im Dec 9, 2004 #2 add a style tag to the control, it wont show up in intelliesense if you're using VS.NET but it will still work: <asp:hyperlink runat="server" style="text-align:right;" ........>
add a style tag to the control, it wont show up in intelliesense if you're using VS.NET but it will still work: <asp:hyperlink runat="server" style="text-align:right;" ........>
G G Dean Blake Dec 9, 2004 #3 You can apply in in code by.... LinkButton1.Attributes.CssStyle.Add("TEXT-ALIGN", "right") G