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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{height:100px; background:#ccc;}
.main{height:500px; background:#FF0000;position:relative;}
.left{ width:200px; height:500px; background:#0033CC;position:absolute;top:0;}
.right{height:500px; background:#99FFFF; margin-left:210px;}
.foot{height:50px; background:#FF6633;}
.left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0}
.main{ height:600px; margin:0px 310px 0px 210px; background:#9CF}
.right{ height:600px; width:300px; position:absolute; left:870px;top:0; position:absolute; background:#FCC;}
.top{height:100px; background:#666666}
.main{height:500px; background:#FF0000}
.left{width:200px; height:500px; background:#0033CC; float:left}
.right{height:500px; background:#99FFFF; margin:0 0 0 210px}
.foot{height:100px; background:#FF6633}
.top{height:50px;background:black;}
.main{height:400px;background:red;}
.left{ width:200px;height:400px;background:blue;position:absolute;left:0;top:50px;}
.right{height:400px;background:green;margin:0 0 0 210px;}
.foot{height:30px;background:yellow;clear:both;}
终于搞明白了为什么footer块会跑到head块下面了。由于main块没有设置高度,里面的元素(left块,right块)又被设置成了浮动显示,所以main块没有被撑开,就像一条线一样紧贴在head块的下面,所以footer块会越位跑到head块下面。
.main{ height:400px; background:#FF6699; }
.left{ width:200px; height:400px; background:#FFFF00; float:left; position:absolute; }
.right{ height:400px; background:#CC3300; float:left; margin-left:210px; width:100%; }
.foot{ height:100px; background:#CCCCCC; clear:both; }
footer上面main里有四个div都用到了float,不占文档层,即浮动在最上面。footer如果不用清除层的话,会自动紧跟top层(此层没用到float)。故footer要用clear:both ,把浮动层都去掉,自己再另占一行。
这老师太棒了吧!解决了我这些天的疑惑,本来都快烦死了,现在豁然开朗,谢谢可爱的老师,希望还可以看见你的教程
.left{ height:600px; width:200px; position:absolute; top:0; background:#0066FF;}
.main{ height:600px; background:#FFCC00; margin:0px 310px 0px 210px;}
.right{ width:300px; height:600px; background:#CCCCCC; position:absolute; right:0; top:0}
能把开场声音关了么?
tgrewg
这种挺好 都用浮动的话中间部分的宽度没办法自适应
.top{height:100px;background:#ccc;}
.main{height:600px;background:red}
.left{height:600px;width:200px;float:left;background:blue;position:absolute;}
.right{height:600px;;float:right;width:80%;;background:indigo;}
.foot{height:100px;background:orange}
.top{height:30px;background-color:#ccc;}
.main{background:#fb0000;overflow:hidden;position:relative;}
.left{ width:200px;background-color:#0000fe;height:600px;position:absolute;top:0;left:0;}
.right{background-color:#ccc;height:600px;margin-left:210px;}
.foot{height:30px;background-color:#ff6634;}
css做布局的简单的介绍 学完了 挺好的
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消