在Firefox等现代浏览器设定页面元素的水平居中,只要指定margin:0 auto;即可
    div#wrap {
	width:760px;
	margin:0 auto; /*这里的0可以任意值*/
	border:1px solid #ccc;
	background-color:#999;
  }

  在Internet Explorer 6 及以下的版本中我们还要做以下的设置:
	body { text-align:center; }

	div#wrap {
	text-align:left;
	}
	http://www.dudo.org/