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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
非常好啊,真心不错
.top{height:50px;background: #eee;}
.main{height:800px;background: #ddd}
.left{width:200px;height:800px;background: blue;position: absolute;left:0;top:50px;}
.right{height:800px;
background: green;margin:0 0 0 210px;}
.foot{height:50px;background:red;clear:both;}
不错 学习了
老师说的浮动不可以是因为外部没有div限制住它们三,要想浮动也可以的,只需在这三个div外部嵌套一个父类div,然后再给这个父类div一个高度。就ok。对吧,老师。
.top{width:800px;height:100px;margin:0 auto;background:gray;}
.main{width:800px;height:900px;background:red;margin:0 auto;}
.left{ width:200px;height:900px;background:blue;float:left;}
.right{width:590px;height:900px;background:green;float:right;}
.foot{width:800px;height:60px;margin:0 auto;}
.top{ height:100px; background-color:grey;}
.main{ height:600px; background:red;}
.left{ height:600px; width:200px; background:blue; position:absolute;left:0px;}
.right{ height:600px; background:lightgreen; position:absolute;right:0;left:210px;}
.foot{ height:50px; background:orange;}
多加了一个花括号右浮动的背景颜色就显示不出来
.top{height:100px;background:#ddd;}
.main{height:500px;background:red;}
.left{ height:500px;width:20%;background:blue;float:left;}
.right{height:500px;width:76%;background:green;float:right;}
.foot{height:100px;background:#369;}
.top{height:100px;background:gray;}
.main{background:red;position:relative;}
.left{width:200px;height:500px;background:blue;position:absolute;top:0;left:0;}
.right{margin-left:210px;height:500px;background:green;}
.foot{height:50px;background:#f63;}
.top{height:60px;background:gray;}
.main{height:600px;background:red;position:relative;}
.left{height:600px;width:200px;top:0;left:0;background:blue;position:absolute;}
.right{height:600px;top:0;right:0;left:210px;background:green;position:absolute;}
.foot{height:50px;background-color:orange;}
完全可以使用float,但是需要把原题目中的
<div class="right">left</div>
<div class="left">right</div>
改成
<div class="left">left</div>
<div class="right">right</div>
即要注意容器顺序,因为float是跟随。
同时float不仅只使用两列布局,多列同样使用,关键是需要根据实际情况来选择最合适的方式。
声音太小了,而且感觉越来越小
.right{height:100%;background:#9acc99;margin-left:210px;}
.left{width:200px;height:100%;background:blue;margin-top:-500px;}
为什么最后样式也对了,但中间空出的部分不显示红色背景是白色的
下面代码.right只要一加float就错误,奇怪了
.main{background:red;}
.left{width:200px;height:800px;background:blue;float:left;}
.right{height:800px;background:green;margin-left:210px;}
.foot{height:200px;background:orange;clear:both;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消