I found the CENTER tag in CSS

I have been hating on CSS because I can’t use the center tag. It is like – just CENTER it DAMN it!
Here is the magic bits:
http://archivist.incutio.com/viewlist/css-discuss/44878
/* Helps IE to center. */
div#outerdiv {
text-align: center;
}
/* The margin version for real CSS savvy browsers. */
div#div_to_be_centered {
text-align: left;
margin: 0 auto;
width: 650px;
padding: 0; /* Zero to prevent IE box trouble. */
}