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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
要求右侧(right)先加载,左侧(left)后加载.
这句话就是html结构中
<div class="main">
<div class="right">right</div>
<div class="left">left</div>
</div>
上面的带码有没有发现在 先写的right后写的 left,
因为代码是顺序执行的,所以也就是题目要求中的 右侧(right)先加载,左侧(left)后加载
.top{height:60px;background-color:#eee;}
.main{height:600px;background-color:red;}
.left{float:left;width:20%;height:600px;background-color:blue;}
.right{float:right;width:75%;background-color:#9acc99;height:600px;}
.foot{height:25px;background:#ff6634;}
.top{height:100px;width:100%;background:#d3d3d3;}
.main{height:600px;width:100%;background:red;}
.left{height:600px;width:200px;background:blue;position:absolute;top:100px;left:0;}
.right{height:600px;background:#90ee90;margin-left:210px;}
.foot{height:50px;width:100%;background:#ff4500;}
这一节真的没懂啊。。。。
第10行的花括号害我纠错改了半天,出来效果了还是挺高兴的!效果图确实中间不该有空隙
为什么最终效果没有背景颜色了
.top{height:200px;background:#ccc;}
.main{height:800px;background:red;}
.left{height:800px;width:200px;position:absolute;left:0;top:200px;background:blue;}
.right{height:800px;background:#0EE;margin-left:210px;}
.foot{height:100px;background:#F03;clear:both;}
多尝试一下,就OK!
最后给footer清除浮动就好,main的高度不用设置,自然会撑起来。
.top{width:100%;height:100px;background-color:#0F9}
.main{width:100%;height:800px;}
.left{width:200px;height:800px;position:absolute;left:0;top:100px;background-color:#906}
.right{height:800px;margin-left:-200px;background-color:#FF0}
.foot{width:100%;height:100px;background-color:#F6C}
就喜欢这样的老师
讲的确实不错,如果能从大一开始就好好学习就好了,可惜我要毕业了
这一节失败之处是没有效果图。。。让小白无从下手
爱上老师的讲课方法
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消