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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
Cy
建议没个视频教学都把相应的代码放在旁边 方便学员自己在编辑器里面试手
.top{ width:100%;height:100px;background:#aaa;}
.main{ width:100%;background:red;position:relative;}
.left{ width:200px;height:400px;background:blue;}
.right{ height:100%;background:yellow;position:absolute;margin:0 0 0 210px;width:100%;}
.foot{ background:orange;clear:both;}
.top{ width:100%;height:100px;background:#aaa;}
.main{ width:100%;background:red;overflow:hidden;position:relative;}
.left{ width:200px;height:400px;background:blue;}
.right{ height:100%;background:yellow;position:absolute;margin:0 0 0 210px;width:100%;}
.foot{ background:orange;clear:both;}
.top{ width:100%;height:100px;background:#aaa;}
.main{ width:100%;background:red;overflow:hidden;position:relative;}
.left{ width:200px;height:400px;background:blue;}
.right{ height:100%;background:yellow;position:absolute;margin:0 0 0 210px;width:100%;}
.foot{ background:orange;clear:both;}
第一小节的声音是不是有问题呢?其他还好,不过存在小错误,希望改进。不过总得来说,还是非常适合我这样的小白学习者。支持赞一个哈!
.top{margin:0 auto;background:gray;height:100px;}
.main{position:relative;background:red;height:300px;}
.left{ width:200px;height:300px;background:blue;float:left;}
.right{height:300px;position:absolute;left:210px;background:green;margin:0 auto;width:100%;}
.foot{margin:0 auto;background:pink;}
此处不能使用overflow:hidden,这样main会遮盖住footer,可以用clear, 或者用margin属性设置footer位置。
body{ margin:0; padding:0; font-size:30px; font-weight:bold}
div{ line-height:50px}
.left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0}
.main{ height:600px; margin:0 310px 0 210px; background:#9CF}
.right{ height:600px; width:300px; position:absolute; top:
.left{ width:300px; height:600px; background:#ccc; float:left;}}

多了一个花括号,小错误,可是这有些误人子弟哈,望修正
这是最简单的文档流布局,居中做法前面已经讲过了
margin:0 auto; width:90% /*若前面「此例设置为了960」设置过了width为固定像素,那么要局中的话width属性一定要设置为非100%,可以随意设置为50%,80%,90%*;如果前面的未设置width属性,那么我们就要设置好width值,小于显示器宽度就能看出效果了/
不这么做的结果就是显示器有多宽,显示就有多
.top{width:100%;height:300px;background:#ccc}
.main{height:500px;}
.left{width:200px;height:500px;background:#999;position:absolute;}
.right{width:65%;height:500px;background:#fcc;position:absolute;}
.foot{height:100px;background:#9fc}

最赞回答 / lsnFor
清除浮动有以下三种方式:1.父元素清除浮动设置--->.box{overflow:hidden;}<div class="box">    <div class="left"></div>    <div class="right"></div></div>2.浮动元素后添加空div清除浮动设置--->.clear{clear:both;}(通常情况both)<div class="left"></div...
.top{height:50px;background:#657;}
.main{height:500px;background:#548;position:relative;}
.left{width:200px;height:500px;position:absolute;left:0;top:0px;background:#215;}
.right{height:500px;margin-left:210px;background:#954;}
.foot{height:60px;background:#147;}

已采纳回答 / 慕粉4013882
在html里面先写right  再写 left就行了啊  
.left{ width:280px; height:590px; float:left;background:#ccc;margin:0 10px 10px; 【任务1】}/*左浮动样式*/
.right{ width:640px; height:590px; float:right;background:#FCC;margin:0 10px 10px; 【任务2】}/*右浮动样式*/
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消