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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
<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>
回头看过来当时不理解的都很清晰了。这里最主要的是要理解脱离文档流的概念,不懂可以放一边,回头慢慢就会懂啦~~
三栏布局 : 左右宽度固定,中间自适应宽度------左右相对定位(跳出布局流),中间自适应不定位设置margin值(外边距为左右宽度,若要留间距可适当增加左右外边距);
答案坑爹,自己都不对
.top{background-color:#ccc;height:50px;}
.main{background-color:red;margin:0 auto;position:relative;}
.left{position:absolute;top:0px; background-color:blue;width:200px;}
.right{ background-color:#9d9;margin-left:210px;}
.foot{background-color:#F63;clear:both;}
我认为这样才是正确,@卢雨曦 的width:100%看上去正确。实际上可拖动
老师讲课风格我喜欢 赞赞赞!!!!!!
老师讲的太好了,清晰明了
老师讲的真好,好想把这些视频收藏起来!
.top{background-color:#ccc;height:100px;}
.main{background-color:red;height:600px;margin:0 auto;}
.left{ background-color:blue;height:600px;width:200px;}
.right{background-color:#9d9;height:600px;position:absolute;left:210px;width:100%;}
.foot{background-color:#F63;height:50px;}
清除元素:1.clear:both;2.overflow:hidden
子div昂,,,昂
喜欢老师的讲课方式
加载顺序的话,我想,原来的代码就已经体现出来了:
<div class="right">right</div>
<div class="left">left</div>
先右后左
.top{width:100%;height:100px;background:#ccc}
.main{width:100%;height:600px;background:red;position:relative}
.left{width:200px;height:600px;background:blue;float:left}
.right{height:600px;background:#9d9;position:absolute;right:0;top:0;left:220px}
.foot{width:100%;height:80px;background:#F63}
浮动是跟随的。
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消