参考:
http://www.css-lecture.com/log/css-beginner/026.html
以下の通り指定する。
margin: 0 auto; /* 上下 0、左右 auto */
例
<!-- divを左右中央に配置 -->
<div style="
margin: 0 auto;
width: 640px;
height: 240px;
background-color: green;
"></div>
サンプル
以上