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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
不用浮动,用定位方式。
right先加载,代码中right在前。

.top{height:100px; background:#ccc;}
.main{position:relative; background:red;}
.left{position:absolute; top:0; width:200px; height:500px; background:blue;}
.right{margin-left:210px; height:500px; background:#9C9;}
.foot{height:50px; background:#F63;}
按照视频的讲解,我尝试不用position,是否正确
.top{background:red;height:50px;}
.main{background:green;height:600px;}
.left{ background:yellow;width:200px;height:600px;float:left;}
.right{background:blue;float:right;height:600px;width:85%;}
.foot{background:red;height:50px;}
.head,.main{ width:960px; margin:0 auto;}
.left{ width:220px; height:600px; background:#ccc; float:left;}
.r_sub_right{ width:200px; height:600px; background:#9FC; float:right;}
.footer{ height:50px; background:#9F9; clear:both;}
.left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0}
.main{ height:600px; margin:0 310px 0 210px; background:#9CF}
.right{ width:300px; height:600px; top:0; right:0; position:absolute; background:#FCC;}
.top{width:100%; height:50px;background:gray;}
.main{width:100%;background:red;position:relative;}
.left{position:absolute;top:0;left:0;width:200px;height:500px;background:blue;}
.right{background:green;margin-left:210px;height:500px;}
.foot{height:50px;background:#f63;}
.top{background:red;height:50px;}定义头部
.main{height:600px; background:green;position:relative;}给爸爸一个框
.left{ width:200px;background:blue;height:600px;float:left;position:absolute;top:0;left:0;}修改大儿子
.right{height:600px; background:yellow;margin-left:210px;}修改二儿子
.foot{background:red; height:50px;}
.left{ width:33%; height:600px; background:#ccc; position:absolute; left:0; top:0}
.main{ max-height:600px;margin:-30px 33% 0 33%; background:lightblue}
.right{ height:600px; width:33%; position:absolute; top:0; right:0; background:pink;}
要求右侧(right)先加载,左侧(left)后加载,不懂啊!求解!!!应该是left加了position属性脱离了标准文档流,而right没有脱离文档流,所以right先加载,left后加载。
margin:0 310px 0 210px(上右下左)
.top{background:#ccc;height:100px;}
.main{width:550x;height:500px;background:red;position: relative;}
.left{width:200px;height:500px; background:blue;position: absolute;top: 0;left: 0;}
.right{margin-left:210px; height:500px; background:#9c9;}
.foot{height:50px;background:#f63;}
.top{width:100%; height:80px;background:gray}
.main{height:600px;background:red;}
.left{width:30%;height:600px;background:blue;float:left;}
.right{width:65%;height:600px;background:green;float:right;}
.foot{width:100%;height:50px;background:orange}
.top{height:100px;background:#CCC;}
.main{background:red;height:300px;position:relative;}
.left{width:200px;height:300px;background:blue;position:absolute;left:0;top:0;}
.right{height:300px;background:#0F9;margin-left:220px}
.foot{height:50px;background:#F51;}
.top{height:100px;width:100%;background:gray;}
.main{height:500px;width:100%;background:red;position:relative;}
.left{height:100%;width:200px;background:blue;position:absolute;top:0;}
.right{height:100%;margin-left:210px;background:green;}
.foot{height:100px;width:100%;background:orange;}

绝对定位真难玩
我们来定义一下顶部~啊~我们来定义一下底部~啊~
这章还是有好几个坑的 不过踩的舒爽
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消