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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{ height:50px;background:#ccc}
.main{height:800px;background:red;position:relative}
.left{ width:200px; height:800px;background:blue;position:absolute;top:0;left:0}
.right{ height:800px;background:#BBFFFF;margin-left:210px;}
.footer{ height:50px;background:#F90;}
咱们来看一下昂
兼容ie6?!
<div class="top">top</div>
<div class="main">
<div class="right">right</div>
<div class="left">left</div>
<div class="clear"></div>
</div>
<div class="foot">foot</div>
.top{width:100%;height:70px;background-color:#ccc;}
.main{width:100%;background-color:red;}
.left{width:35%;height:350px;background-color:blue;float:left;}
.right{width:63%;height:350px;background-color:green;float:right;}
.foot{width:100%;height:50px;background-color:orange;}
.clear{clear:both;}

已采纳回答 / joyboy0405
根据自身情况采取相应的记录手段吧,不回顾很容易忘的,我是手记的,记的时候又加强了记忆,之后也可以拿来回顾,记重点,但也不能太心急,该慢还是要慢的。希望能够对你有多帮助~
在footer里面加个clear:left就OK了
.top{height:100px;background:#ccc;}
.main{}
.left{width:200px;height:500px;background:green;position:absolute;left:0;top:100px;}
.right{margin-left:210px;height:500px;background:#9c9;}
.foot{height:50px;background:#f63;}
相对来说比较基础,不过很实用

已采纳回答 / tang90
因为middle是在标准文档流中,所以middle块级元素占一行,后面的div只能从下面开始了。我猜测应该是这个原因。把middle改成相对或者绝对定位,使它脱离标准文档流应该可以。
.top{width:100%; height:100px; background:gray;}
.main{width:100%; height:600px; background:red;}
.left{width:300px; height:600px; background:blue; float:left;}
.right{width:550px; height:600px; background:#369; float:right;}
.foot{width:100%; height:100px; background:#f63;}
太赞了,老师辛苦

已采纳回答 / 大耳牛
不要用浮动,用position定位,把浮动都去掉,给left和right一个绝对定位,把main的宽度去掉,margin值改一下就好了
技术与艺术融合的关键岗位!!!!呵呵
.top{width:800px;height:100px;background:#ccc;}
.main{width:800px;height:600px;background:red;}
.left{width:200px;height:600px;background:blue;float:left;}
.right{width:590px;height:600px;background:#9c9;float:right;}
.foot{width:800px;height:50px;background:#f63;clear:both;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消