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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{height:100px;background:gray;}
.main{height:600px;background:red;margin:0 ;}
.left{width:200px;height:600px;float:left;background:blue;}
.right{width:100%;height:600px; position:absolute;left:210px;background:green;}
.foot{height:600;background:yellow;}
<style>
body{margin;0;padding:0;font-size:60px;}
.top{height:200px;backgroun:yellow;}
.main{height:1000px;background:pink;}
.foot{height:200px;background:blue;}
.top .main .foot{margin:0 auto;}
<body>
<div class="top">我是top</div>
<div class="main">我是内容</div>
<div class="foot">我是页脚</div>
</body>
额~ 额~ 额~
有一个问题老师没说,应该说明 float 和默认的不是一个流,float是不能撑起默认div的,只能起到定位效果
我最喜欢老师的那句话:“看一下,啊 ” 看一下,啊
.top{height:100px;background:gray;}
.main{height:300px;background:red;width:100%;position:relative;}
.left{width:200px;position:absolute;left:0;top:0;height:300px;background:blue;}
.right{background:#9c9;height:300px;margin-left:210px;}
.foot{height:50px;background:#f63;}
.main{width:500px;height:300px;background:red;margin:0 auto;position:relative;}
.left{width:200px;height:300px;background:blue;float:left;top:0;left:0;}
.right{position:absolute;height:300px;background:green;right:0;width:55%;}
.foot{height:50px;background:orange;clear:both;}
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。

有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位
一定要将position放在 right和top属性的前面
main没有设置高度。所以footer跑到了head下面,
太简单了啊
只需要在.left{}中添加float:left;在.right{}中添加float;right;就可以起到效果。然后如果想有间隙,也即是和效果图一样的话,就必须要修改.left和.right中的width值,使左右相加的值小于960px即可。
老师说“啊”时 脑补满头银发的老师亲切的跟一群小屁孩讲课,so nice~
.top{height:100px;background:#ccc}
.main{margin:0 auto;height:600px; background:red}
.left{ width:200px; height:600px; background:blue; float:left;}
.right{height:600px;position:absolute; left:210px;right:0;background:green;}
.foot{height:50px;background:#369;}
.top{width:100%;height:100px;background:#ccc;}
.main{height:800px;background:red;}
.left{width:200px;height:800px;background:blue;position:absolute;}
.right{margin-left:210px;width:100%;height:800px;background:green;position:absolute;}
.foot{width:100%;height:100px;background:orange;margin:0 auto;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消