NO ! The <center> tag is deprecated and should NOT be used.
If you're going to use CSS, use it to center your layout.
Add this to your rules for <body>
text-align: center; *** makes IE 6 & below center
Then, if you have wrapped your entire fixed-width layout inside a #wrapper div (which you should to make this easy), add this to the rules for the #wrappper:
margin: 0 auto; ** centers for all other browsers **
Make sure you give your #wrapper a defined width or it won't work.
Oh.. and the BEST way to code a layout -- NO TABLES !!!! 
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
Last edited by LadynRed; 03-01-2007 at 02:16 PM..
|