A Aitham alama Jul 18, 2004 #1 How can i make a dynamically created web label control to to be Center allignment Thanks
J John Saunders Jul 18, 2004 #2 Aitham alama said: How can i make a dynamically created web label control to to be Center allignment Click to expand... A Label control simply generates a <span>. By itself, there's no way to align a span. You can place the Label control inside of a <div>, for instance: <div style="text-align: center"> <asp:Label .../> </div>
Aitham alama said: How can i make a dynamically created web label control to to be Center allignment Click to expand... A Label control simply generates a <span>. By itself, there's no way to align a span. You can place the Label control inside of a <div>, for instance: <div style="text-align: center"> <asp:Label .../> </div>