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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
最后这篇总结讲的好好
先后加载就是在文档中的代码先后顺序不一样,注意.right是写在.left上面的
还好吧,简单明了易懂,就是课有点少
.top{width:100%;height:100px;background:#ccc}
.main{width:800px;height:400px;background:red}
.left{width:200px;height:400px;background:blue;float:left}
.right{width:580px;height:400px;background:green;float:right}
.foot{width:100%;height:50px;background:#900;clear:both}
这个清除怎么搞的
footer没颜色或跑位原因:main没有被里面的元素撑开。
解决办法:1.给main使用隐藏溢出overflow:hidden;让main撑开。
2.给受影响元素清除浮动clear:both;去除影响。
推荐用办法1.
.top{height:90px;background-color:#ccc;}
.main{height:455px;}
.left{width:200;height:455px;background-color:blue;}
.right{width:100%;height:455px;background-color:green;position:absolute;left:200px;}
.foot{width:100%;height:40px;background-color:orange;}
.main{ width:960px; height:600px;margin:0 auto}
.left{ width:300px; height:600px; float:left;background:#ccc;}/*左浮动样式*/
.right{ width:600px; height:600px; float:right;background:#FCC;}/*右浮动样式*/
感谢老师,每次学完习惯!老师很亲切
老师讲的很基础,但是可能为了方便,所以代码不是很规范,看着有点难受
这都覆盖了原来的啦!
.top{width:100%;background:gray;height:50px;}
.main{width:100%height:500px;background:red;}
.left{ width:200px;height:500px;float:left;background:blue;}
.right{height:500px;float:right;background:green;}
.foot{width:100%;height:50px;background:#369;}
为 这样写中间会有一片空白啊
我以为只有我一个人感到亲切
.top{height:100px; background:gray;}
.main{width:100%;height:400px;background:red; }
.left{ width:200px;height:400px;background:blue;position: absolute;left: 0;top:100px;}
.right{height:400px;background:green;margin-left:210px;}
.foot{height:100px; background:orange;clear:both;}
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。
浮动(float),绝对定位(position:absolute)和固定定位(position:fixed)可让元素脱离文档流,即元素移位后不占原区域;
相对定位(position:relative)不能脱离。
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消