Forum Moderators: not2easy

Message Too Old, No Replies

Centreing Issue in Mac Safri and PC Fireforx

main table won't centre on page

         

kiwidesign

5:13 am on Jul 1, 2005 (gmt 0)

10+ Year Member



Hi I have created a site that has its content centred on the page. I have used the align centre command within the table html.

Is there any way i can use css to centre the table so that it will work across platforms?

benihana

8:19 am on Jul 1, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



body {
text-align:center; /*for IE 5, 5.5 */
}

table {
text-align:left;
}

#mytable {
margin:0 auto; /* for good browsers + IE 6 */
}

where your table has an ID of mytable