|
Giomanach -> RE: Table Center (12/26/2004 21:15:35)
|
quote:
it won't work in IE if you use a transitional doctype (then you have to use the center attribute on the table element) but if you're using strcit (x)html it works fine., but that's just cos IE is crap. A bit more CSS will solve that bug... CSS: html, body{ text-align: center; } #page{ margin: 0 auto; width: 775px; text-align: center; } HTML: <html> <head> <title>Page 1</title> <link type="text/css" rel="stylesheet" href="01.css"> </head> <body> <div id="page"> <table> ....Table coding..rows, cells etc.... </table> </div> </body> </html> works in all browsers without fail =)
|
|
|
|