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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰

已采纳回答 / chachakun
应该这样理解:当块添加了浮动以后,它是脱离了原来的文档流(大致值文档结构)的,所以没有的添加的浮动的块(处于原来的文档流中)就会上去补充,所以footer就会跑到main上面。找到一篇好文,可以看看:http://www.cnblogs.com/iyangyuan/archive/2013/03/27/2983813.html
.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}

已采纳回答 / MissySue
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-...
.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做布局的简单的介绍 学完了 挺好的
.top{height:100px;background:#ccc;}
.main{height:400px;background:#900;}
.left{ height:400px;width:200px;background:#00c;position:absolute;top:100px;left:0px;}
.right{height:400px;background:#1f6;margin-left:210px;}
.foot{height:100px;background:#cac;}
上面的代码没有给main设置高度,而main里的内容又设置成了浮动,所以footer会跑到head的下面。
解决方法有两个:1.清除浮动, clear:both;
2.为main设置高度, .main{
width:860px;height:600px;margin:0 auto;background:#9FC;
}
强烈建议此章内容再追加一节,专门针对这节问题给与答案(可能有多种),最好还能针对答案中集中出现的错误进行分析讲解!!!
为什么footer不消除浮动影响就不见了呢???
.main{ height:600px; margin:0 310px 0 210px;】 background:#9CF}

这个margin属性的310和210是相对于body的距离,那不就默认是绝对定位吗????可是margin的上右下左值不是相对于另一个盒子的外间距吗?所以一个盒子是一个div标签元素还是一个body啊???
.main{ height:600px; margin:0 310px 0 210px;】 background:#9CF}
这个margin属性的310和210是相对于body的距离,那不就默认是绝对定位吗????
楼下的都用的相对定位,那我这样的绝对定位也可以吧。。。
.left{ width:300px; height:600px; background:#ccc; float:left;}/*左浮动样式*/
.right{ width:660px; height:600px; background:#FCC; float:right; position:absolute; left:320px;}}/*右浮动样式*/
开场声音太大了,影响心情(#‵′)凸
width:100%;height:100px;background:gray
width:100%;height:600px;background:red;position:relative
width:200px;height:600px;background:blue;position:absolute;top:0;left:0
height:600px;background-color:green;position:absolute;top:0;left:210px;width:100%
width:100%;height:100px;background:orange
.top{width:100%; background: gray;height: 50px}
.main{width: 100%;background: red;height: 600px;}
.left{ width: 35%;height: 600px;float: left;background: blue;}
.right{width: 60%; height: 600px;background:green;float: right;}
.foot{width: 100%;height: 50px;background:orange;}
不错,不错,听得很明白。
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消