Centering Text in a Label

  • Thread starter Thread starter Brian Conway
  • Start date Start date
Brian said:
Is there a way to center text inside a label in a webform?

Wrap the label with a DIV element:

<div align="center"><asp:Label id="myLabel" runat="server" /></div>
 
Back
Top