日期:2014-05-17  浏览次数:20584 次

我想让DIV居中对齐怎么修改???.

------解决方案--------------------
<center><div>......</div></center> 试试
------解决方案--------------------

<!DOCTYPE html>
<html>
<head>
<style>
* {margin:0px;padding:0px;}
#page {margin-left:auto;margin-right:auto;}
</style>
</head>
<body>
<div id="page">page</div>
</body>
</html>

------解决方案--------------------
把Css样式改成下面的,应该就可以了。

.Classpeng{
    margin:0px auto;
    text-align:center;
    width:200px;
    height:100px;
}