Quote:
|
Originally Posted by bcinelli
Ahhh .. well im down to only 18 validation errors. I don't understand what i have to do with them. Can someone take a peak for me? .. most of em have to do with <center> tags ..
Only 18 errors ... to the 207 i had earlier this morn .. (yea .. i had some free time today)
http://validator.w3.org/check?uri=ht...m%2Findex.html
|
The center tag is no longer allowed for XHTML. You can center items by putting them in a CSS stylesheet object and using the following:
Code:
text-align: center;
margin-left: auto;
margin-right: auto;
The text-align: center is required to get images to center in IE. Oddly, IE doesn't center with just the left and right margins.