我想让整个DIV居中,设置了margin:0px auto; 为什么它还是一直往左对齐?
2013-04-08
展开全部
再给这个div设置个宽度。。。不设置的话默认div宽是100%所以就不会居中
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-04-08
展开全部
1、请确定你没有为这个DIV设置float;
2、水平居中往往不能单靠margin实现,在IE下还要结合text-align实现,给DIV加上样式:
#divid{width:100px;margin:0 auto;text-align:center;}
2、水平居中往往不能单靠margin实现,在IE下还要结合text-align实现,给DIV加上样式:
#divid{width:100px;margin:0 auto;text-align:center;}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-04-08
展开全部
是不是 加 float:left 了? 去掉就哦了看下面例子<!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">
<!--
.divcenter{
background:#CCCCCC;
width:1000px;
line-height:50px;
margin:0 auto;
text-align:center;
}
.divleft{
float:left;
background:#CCCCCC;
width:1000px;
line-height:50px;
margin:0 auto;
text-align:center;
}
-->
</style></head>
<body>
<div class="divcenter">居中没</div>
<div class="divleft">居中不了</div>
</body>
</html>
<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">
<!--
.divcenter{
background:#CCCCCC;
width:1000px;
line-height:50px;
margin:0 auto;
text-align:center;
}
.divleft{
float:left;
background:#CCCCCC;
width:1000px;
line-height:50px;
margin:0 auto;
text-align:center;
}
-->
</style></head>
<body>
<div class="divcenter">居中没</div>
<div class="divleft">居中不了</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不用加0px; 直接margin:auto;就行了 :)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是不是有浮动啊,如果父容器设置浮动了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询