最新回答 / 慕移动9181930
相当于选择已有节点保存起来之后赋值,这里目前只是在插入dom之前这么操作。谢谢你的支持,希望能关注后续课程,有任何意见建议也欢迎随时提出~:)
2016-01-14
.top{height:100px;background-color:gray}
.main{height:500px;background-color:red;position:relative}
.left{ position:absolute;left:0;top:0;width:200px;height:500px;background-color:blue}
.right{margin-left:210px;background-color:#ccc;height:500px}
.foot{height:50px;background-color:orange;clear:both}
.main{height:500px;background-color:red;position:relative}
.left{ position:absolute;left:0;top:0;width:200px;height:500px;background-color:blue}
.right{margin-left:210px;background-color:#ccc;height:500px}
.foot{height:50px;background-color:orange;clear:both}
最新回答 / 11223ng
<body><div class="top">top <div class="head"></div></div>你把这里的 top 去掉,这也占一行的
2016-01-13
.top{height:60px;background:#ccc;margin:0 auto;}
.main{height:400px;background:red;}
.left{ width:200px;height:400px;background:blue;float:left;}
.right{height:400px;background:#8ff;width:100%;position:absolute;margin-left:210px;}
.foot{height:30px;background:#c42;margin:0 auto;}
.main{height:400px;background:red;}
.left{ width:200px;height:400px;background:blue;float:left;}
.right{height:400px;background:#8ff;width:100%;position:absolute;margin-left:210px;}
.foot{height:30px;background:#c42;margin:0 auto;}
.top{height:100px;background:#ccc;}
.main{height:500px; background:#f00;}
.left{width:200px;height:500px; background:blue;position:absolute;relative}
.right{height:500px;background:green;position:absolute;width:100%; margin-left:210px;}
.foot{height:100px; background:#c0c;}
.main{height:500px; background:#f00;}
.left{width:200px;height:500px; background:blue;position:absolute;relative}
.right{height:500px;background:green;position:absolute;width:100%; margin-left:210px;}
.foot{height:100px; background:#c0c;}
最新回答 / 迷途的马尔斯
你的不用清除浮动是因为你的main盒子设置了高度,而且你的main盒子并没有包裹住left和right,这样还没有达到高度自适应的效果,foot清除浮动可以令foot随着left和right的高度变化而移动
2016-01-11