...布局问题:(求高手帮下忙)为什么body中的margin:0 auto;没有显示居中...
发布网友
发布时间:2024-10-13 09:36
我来回答
共2个回答
热心网友
时间:2024-11-14 19:23
<body>
<div class="box">
<!-- 这里是你页面的代码 -->
</div>
</body>
.box{
width:900px;
margin:0 auto;
background: #0066FF url(../png/背景.png) repeat-y 0 -67px;
}
把最上面的<html>替换成
<!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">这个,如果不加这个的话,margin:0 atuo;是不会实现居中的
热心网友
时间:2024-11-14 19:23
Margin-left:auto;
margin-right:auto;把你原来的删了加上这个你再调试