div css网页布局怎样整体居中


给竖配大div层设置宽卖迅度后margin:0 auto;那个0的数值是可以随意改变的,意思是上下的间距余竖,auto的是左右的间距
子块元素水键镇返平居中:{margin-left:auto;margin-right:auto}
子块元素垂稿饥直居旅如中:{margin-top:25%;margin-bottom:25%}
下面的代码,!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />洞信
<title>无塌桐标题文档</title>
<style type="text/css">
<!--
.STYLE1 {color: #00FF00}
.a1{
width:800px;
height:768px;
margin:0 auto;
background:#000000;
}
-->
</style>
</head>

<body>
<div class="a1 STYLE1">
网团颤坦页整体剧中
<div align="center">文字剧中</div>
</div>
</body>
</html>
margin:0 auto 同时注意设置整个body的宽度
这样写
body{width:960px; margin:0px auto;}