Aligning Tables in CSS
Trying to make a page XHTML 1.0 compliant I came across a problem. There is no align="center" in XHTML strict. So you're supposed to make your alignment in CSS but it's complicated. One would think you'd just do align: center but there is no align attribute. I ended up finding this instead.
.table_center { margin-left: auto; margin-right: auto; }