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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{height:100px;background:#ccc;}
.main{height:500px;background:red;position:relative;}
.left{width:200px; height:500px;background:blue; position:absolute;left:0;top:0;}
.right{height:500px;background:#9c9; margin:0 0 0 220px;}
.foot{height:50px;background:#f63;}
好,不错的
<div class="right">right</div>
<div class="left">left</div>
先执行right再执行left,就是先加载右侧再加载左侧。也就是说先执行谁就先加载谁~
.footer{ height:50px; background:#9F9; overflow:hidden; width:100%;}
题目提供的答案不对,经测试以下代码可以:

.top{height:100px; background:#ccc;width:100%;}
.main{background:red;position:relative;}
.left{ width:200px; height:500px; background:blue;position:absolute;left:0;top:0; }
.right{ margin-left:210px;height:500px; background:#9C9;}
.foot{ height:50px; background:#F63 }
按照答案left、right两个div也不能并列啊,left跑下面去了。

已采纳回答 / 小宝的宝
margin:0 310px 0 210px 0;你的这句编程多了一个0
讲师讲的很不错
.top{height:100px; background:#ccc}
.main{height:500px;background-color: red;}
.left{ width:200px; height:500px; background:blue; position:absolute;}
.right{ margin-left:210px;height:500px; background:#9C9;position:absolute;width: 100%}
.foot{ height:50px; background:#F63 }

已采纳回答 / 菜菜田
错了,不是0px的原因!是因为没有取消body样式。body{ margin:0; padding:0;}
【要求右侧(right)先加载,左侧(left)后加载】的意思就是:编写HTML的代码时应先写class名为right的div,后写class名为left的div
.top{height: 100px;background: #ccc;}
.main{height: 500px;background: red;}
.left{width: 200px;height: 500px;background: blue;position: absolute;top:100px;}
.right{height: 500px;background: cyan; margin-left: 220px;}
.foot{height: 50px;background: orange;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消