已采纳回答 / 李晓健
这个margin 是用在了中间那块上,这里margin 一共4个值 分别对应 上 右 下 左 ;对应到他给的值就是 上:0;右310px; 下:0; 左:210px; 因为他是左中右的布局,所以上下不用管,都是0,这个没有问题。说一下他的左右的值是怎么算出来的。先看左边的,他给的值是210px,再看一下他左边区域div的宽度,200px,而且是用定位放到了左边,因为他们是在一行上的,左边区域就会盖到中间区域上,所以中间的区域要把左边的区域的宽度空出来,也就是至少要空出200px 左边才能正好显示。他给...
2015-11-21
最新回答 / 慕課君
意思就是块级元素默认宽度是100%,你想看到的是块里的元素居中,那就不能用margin,要是单纯想块居中,就要把块容器限制一个宽度。如果是想让块内元素居中的话,那就用text-align:center。
2015-11-20
刚才写少了两个,这个才对
.top{height:100px;background:#ccc;}
.main{height:600px;background:red;margin:0 auto;position:relative;}
.left{height:600px;width:200px;background:#00f;position:absolute;left:0;top:0;}
.right{height:600px;margin-left:210px;background:#1d9;}
.foot{height:50px;background:orange;}
.top{height:100px;background:#ccc;}
.main{height:600px;background:red;margin:0 auto;position:relative;}
.left{height:600px;width:200px;background:#00f;position:absolute;left:0;top:0;}
.right{height:600px;margin-left:210px;background:#1d9;}
.foot{height:50px;background:orange;}
<style>
.top{height:100px;background-color:blue;}/*没宽:通栏*/
.foot{width:800px;height:100px;background-color:#900;margin:0 auto;}/*没设置height,页脚先手出不来*/
body{margin:0;padding:0;}
.main{width:800px;height:300px;background-color:#ccc;margin:0 auto;}/*没宽高,显示出不来*/
</style>
<body>
<div class="foot"></div>
.top{height:100px;background-color:blue;}/*没宽:通栏*/
.foot{width:800px;height:100px;background-color:#900;margin:0 auto;}/*没设置height,页脚先手出不来*/
body{margin:0;padding:0;}
.main{width:800px;height:300px;background-color:#ccc;margin:0 auto;}/*没宽高,显示出不来*/
</style>
<body>
<div class="foot"></div>
<div class="left">左边</div>
<div class="main">中间</div>
<div class="right">右边</div>
<style>
.left{width:200px;height:500px;background:red;float:left;}
.right{width:300px;height:500px;background:yellow;float:right;}
.main{height:500px;background:#ccc;margin:0 300px 0 200px;}
</style>
<div class="main">中间</div>
<div class="right">右边</div>
<style>
.left{width:200px;height:500px;background:red;float:left;}
.right{width:300px;height:500px;background:yellow;float:right;}
.main{height:500px;background:#ccc;margin:0 300px 0 200px;}
</style>