Forum Moderators: open

Message Too Old, No Replies

about <center> tag

         

amir_iiui

5:48 am on Jun 23, 2005 (gmt 0)

10+ Year Member



What are the newer constructs for <center> tag. Can some body tell me what should i use in place of <center> tag.

BlobFisk

9:13 am on Jun 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hello amir_iiui and welcome to WebmasterWorld!

Instead of the now deprecated <center> tag we use CSS.

So, you can use any element, eg <p> and using CSS centre align the content. For example:


<p class="alignCentre">This text will be aligned to the centre!</p>

And in the CSS:


p.alignCentre {
text-align:center;
}

HTH

amir_iiui

9:17 am on Jun 23, 2005 (gmt 0)

10+ Year Member



OK, thankx