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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{width:100%;height:100px;;background:gray;}
.main{width:100%;height:900px;;background:red;}
.left{width:200px;height:900px;;background:blue;float:left }
.right{width:85%;height:900px;float:right;;background:yellow;float:right;}
.foot{width:100%;;background:gray;clear:both;}
老湿好棒!讲解得很有层次,基础又系统!
不改字体这样不就行啦
.left{ width:50px; height:600px; background:#ccc; position:absolute;left:0; top:0;font-size:0.5em;}
.main{ height:600px;margin:0 90px 0 60px; background:#9CF;font-size:0.5em;}
.right{ height:600px; width:80px; position:absolute; top:0;right:0; background:#FCC;font-size:0.5em;}
div不能乱用吧
这东西bug多多
啊 啊 啊
.top{height:100px;background:grey;}
.main{height:500px;background:red;}
.left{width:200px;height:500px;background:blue;float:left;position:relative}
.right{width:100%;height:500px;background:green;position:absolute;float:right;margin-left:210px;}
.foot{width:100%;background:yellow;}正确答案在此!
top{width:100%; height:50px;background:gray;}

.main{width:100%; height:300px;background:red;}

.left{float:left;width:200px;height:300px;background:blue;}

.right{float:left;margin-left:210px;width:100%;height:300px;background:green}

.foot{width:100%; height:50px;background:#369;}
另:relative 不脱离文档流,absolute 脱离文档流。也就是说:relative 的元素尽管表面上看到它偏离了原来的位置,但它实际上在文档流中还是没变。absolute的元素不仅位置改变了,同时也脱离了文档流。
position:relative日常应用的时候一般是设置给position:absolute;的父层的,父层position:relative; 子层position:absolute;的话, 就是依照父层的边界进行定位的, 不然position:absolute 会逐层向上寻找设置了position:relative的元素边界, 直到body元素..
如果你想让这个#demo里的一个div#sub相对于#demo定位在右上角的某个地方,应该给#demo相对定位,#sub绝对定位。
absolute是相对于自己最近的父元素来定位的,如果你不给#demo相对定位,那么#sub的绝对定位就是相对于body来定位的。
relative是相对于自己来定位的,例如:#demo{position:relative;top:-50px;},这时#demo会在相对于它原来的位置上移50px。
.top{background:#ccc;height:100px;}
.main{background:#ff0000;overflow:hidden;
.left{height:500px;background:blue; width:200px;float:left;}
.right{float:right;background:green;height:500px;width:100%;margin-right:-210px;}
.foot{height:100px;background:orange;
overflower:hidden


clear:both;
.top{height:100px;background:blue;}
.main{height:600px;background:red;}
.left{width:200px;float:left;background:black;height:600px;}
.right{position:absolute;background:yellow;height:600px;margin-left:210px;width:80%;}
.foot{height:100px;background:blue;}
这样也行啊
.main,.footer.head{ width:960px; 【任务1】margin:0 auto;}
标准答案如下:
.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{ margin-left:210px; height:500px; background:#9C9;}
.foot{ height:50px; background:#F63;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消