faqts : Computers : Programming : Languages : Html

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

60 of 99 people (61%) answered Yes
Recently 7 of 10 people (70%) answered Yes

Entry

How to align tables to center with CSS?

Apr 5th, 2005 00:43
Nick Fisher, Deepak Bansal, Mister Sokrates,


Old and deprecated:
<table align="center">...</table>

New:
<table style="margin: auto">...</table>


This of course could be tied into any CSS:

#mainTable {
  margin: auto;
}
...
<table id="mainTable">...</table>