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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.main,.footer{ width:50%; margin:0 auto; 【任务1】}
大家看一下,嗯~~~
.top{ height:80px; background-color:grey;}
.main{background-color:red; height:400px;width:100%; }
.left{width:200px; height:400px; background-color:blue; }
.right{width:100%;margin-left:210px; height:400px; background-color:rgb(154,204,153);position:absolute}
.foot{background-color:rgb(255,102,52);}
最后这篇总结讲的好好
先后加载就是在文档中的代码先后顺序不一样,注意.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.

已采纳回答 / 不知不觉后知后觉嗯
你的class写成calss了。。改一下就好<body><div class="top">head</div><div class="main">main</div><div class="footer">footer</div></body>
.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;}/*右浮动样式*/
感谢老师,每次学完习惯!老师很亲切
老师讲的很基础,但是可能为了方便,所以代码不是很规范,看着有点难受

最新回答 / 赵小刀丝儿
可以。.main需要设定宽度,中间部分的左右模块分别加左右浮动即可.main {        background: red;        width: 100%;       height: 300px;    }        .left {        background: blue;        width: 200px;        height: 300px;        float: left;           }        .right {        backgr...
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消