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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
艺术+技术的融合=前端
.right{widht:650px;height:600px;background:#FCC;float:right;}就可以出现间距了
.top{height:100px;background-color:#ddd;}
.main{background-color:red}
.left{width:200px;height:300px;position:absolute;top:100px;left:0;background-color:blue;}
.right{height:300px;margin-left:210px;background-color:green;}
.footer{height:50px;background-color:orange;}
top{background-color:blue;width:100%;height:100px;}
main{background-color:black;overflow:hidden;margin:0 auto;}
left{ background-color:red;;width:200px;height:500px}
right{background-color:yellow;width:100%;float:left;margin-left:210px;height:500px}
foot{background-color:pink;width:100%;height:50px}
position和margin比较乱
任务三是先加载右边后加载左边所以我将.left绝对定位之后top:50px

.top{height:50px;background:gray;}
.main{height:500px;background:red;}
.left{ height:500px;background:blue;width:200px;position:absolute;top:50px;}
.right{height:500px;background:green;margin:0 0 0 210px;}
.foot{height:50px;background:orange;}
.main{ width:880px; height:600px; margin:0 auto}
.left{ width:300px; height:550px; background:#ccc;float:left; 【任务1】}/*高度缩小50px,就有底部空间了*/
.right{ width:550px; height:550px; background:pink;float:right; 【任务2】}/*高度缩小50px,就有底部空间了,宽度之和小于父级的宽度就有中间的空间了,父级的宽高少于页面的宽高就有四周的空间了*/
开始时候吓一跳
兼容IE6。和先加载后加载还真不会

已采纳回答 / qq_杺難幵_03727737
查了下left:0是相对body进行定位的,给main设置position:relative相对定位,left就会以已经进行定位的父元素main进行绝对定位position:absolute;letf:0top:0;就可以用了
.top{width:100%;height:50px;background:gray;}
.main{height:500px;background:red;margin:0 auto;}
.left{width:300px;height:500px;background:blue;float:left;}
.right{width:900px;height:500px;background:green;float:right;}
.foot{width:100%;height:100px;background:purple;}

已采纳回答 / YomiChan3924135
你应该是清除浮动的时候写错了吧,应该是clear:both;  而不是float:none;
非常好的教程, 自学的问题在于知识很分散, 学完非常容易忘记, 所以必要的练习是很有帮助. 再次感谢
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消