What is DIV style for HTML center tag?

css, html

Solution

The HTML:

<div id="something">
Content goes here.
</div>

And the CSS:

#something
{
  width: 850px;
  margin-left: auto;
  margin-right: auto;
}

Problem

What is DIV style for HTML center tag?

Original source