- How do you center a table on a page with XHTML? with CSS?
- To center a table with XHTML; you would have to type
align="center" in the table tag. To center a table in CSS, you
would have go in to the style and add margin-right: auto and
margin-left: auto.
Main