为了账号安全,请及时绑定邮箱和手机立即绑定

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{height:100px;background:#ccc;}
.main{height:600px;background:red;position:relative;}
.left{width:200px;background:blue;height:600px;position:absolute; top:0;left:0;}
.right{background:green;height:600px;margin:0 0 0 210px;}
.foot{height:100px;background:yellow;}

已采纳回答 / 慕沐9651679
你的right部分  position:absolute  只有设置了top:0,未定义left 和right,则默认值为auto。如果left或right的值为auto,则元素的顶端或者左边(从左往右读)要相对于其未定位前本来的顶端或左边对齐。
.main{ height:600px; background:#F00; position:relative}
.left{ width:200px; height:600px;background:#00F;}
.right{ height:600px; width:100%;background:#3F9; position:absolute; margin-left:210px;top0}
.foot{ height:100px; background:#F60;margin:0 auto;}

已采纳回答 / 慕勒6241362
看看这个有没有帮助http://www.cnblogs.com/iyangyuan/archive/2013/03/27/2983813.html
keyide 加油
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px;background:#9CF;}
.main{height:600px;background:red;}
.left{width:200px; height:600px;background:blue;float:left;}
.right{height:600px;background:green;float:right;}
.foot{height:50px;background:yellow;}

定位用float也没问题吧
.main{width:960px;height:600px;margin:0 auto;background:#9FC;}
.top{height:100px;width:;background:gray;}
.main{height:400px;background:red;position:relative;}
.left{height:400px;width:200px;background:pink; }
.right{height:400px;width:100%;background:green;position:absolute;top:0;left:210px;}
.foot{height:50px;background:black;}
要求右侧(right)先加载,左侧(left)后加载: <div class="right">right</div>在
<div class="left">left</div>前面就可以实现了,不需要多加修改
.top{margin:0 auto;background-color:gray;}
.main{position:relative;height:800px;background-color:red;}
.left{ width:200px;position:absolute;left:0;top:0;height:800px;background-color:blue;}
.right{float:right;height:800px;background-color:green;}
.foot{margin: 0 auto;background-color:orange;}

已采纳回答 / 慕尼黑6530071
clear:both对于父包含没有效果,只适用于紧邻后面的元素
先加载right,后加载left,体现在<body>先写right后写right,已经实现了.right需要设置margin-left。left需要脱离标准文档流,所以要用position:absolute,且要相对于main来定位,所以需要给main设置position:absolute。

.main{background:red;position:relative;}
.left{ width:200px;height:500px;background:blue;position:absolute;top:0;left:0;}
body{ margin:0; padding:0; font-size:30px}
div{ text-align:center; font-weight:bold}
.main,.footer{ width:960px; 【任务1】margin:0 auto}
.head{ width:100%; height:100px; background:#ccc;margin:0 auto}
.main{ height:600px; background:#FCC}
.footer{ height:50px; background:#9CF}

【任务1】莫名其妙
变法很多,但是依据老师的意思是,要合理利用浮动和绝对定位,用这两个操作为主
body{ margin:0; padding:0; font-size:30px; font-weight:bold}
div{line-height:50px;}
.main{ width:960px; height:600px; margin:0 auto}
.left{ width:290px; height:590px; background:#ccc;float:left;}/
.right{ width:650px; height:590px; background:#FCC;float:right;position:relative;
right:10px;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消