今天改一网页,asp的 网页跑偏了,中间的部分偏左,底部在中间,添加一段css即可解决问题。

在靠<body></body>最外侧加上。

<div style="margin:0 auto; width:1000px">你原来的内容</div>


-------------

或者在<head></head>之间加上 (经测试本代码完美)

<style type="text/css">

body{

margin:0 auto;

width:1000px;

}

</style>


参考