How do you center a table on a page with XHTML? with CSS?
With XHTML you use align="center" inside of the table tag. In CSS you use margin-right:auto and margin-left:auto to the style rule for the table.
Back to Main