Center Label on Page

P

Phillip Vong

Using VS2005 / VB.NET / ASP.NET

Newbie trying to learn.

I have a simple label and I want to center this on the page, but I can not.
When I hightlight this in VS2005 and say to center it, it does nothing. How
do I hard code this to center on a pager?

<asp:Label ID="HeadingL" runat="server" Font-Size="XX-Large" Text="Summary"
ForeColor="DarkBlue"></asp:Label><br />
 
J

James Irvine

Phillip Vong said:
Using VS2005 / VB.NET / ASP.NET

Newbie trying to learn.

I have a simple label and I want to center this on the page, but I can
not. When I hightlight this in VS2005 and say to center it, it does
nothing. How do I hard code this to center on a pager?

<asp:Label ID="HeadingL" runat="server" Font-Size="XX-Large"
Text="Summary" ForeColor="DarkBlue"></asp:Label><br />



<center>

<asp:Label ID="HeadingL" runat="server" Font-Size="XX-Large" Text="Summary"
ForeColor="DarkBlue"></asp:Label><br />

</center>
 
M

Mark Rae

I have a simple label and I want to center this on the page, but I can
not. When I hightlight this in VS2005 and say to center it, it does
nothing. How do I hard code this to center on a pager?

<div style="text-align:center">
<asp:Label ID="HeadingL" runat="server" Font-Size="XX-Large" Text="Summary"
ForeColor="DarkBlue"></asp:Label><br />
</div>

You shouldn't use the old <center> tag these days, as it is not
XHTML-compliant:
http://www.w3schools.com/tags/tag_center.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top