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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
三列布局用浮动也是可以的,代码如下:
<div class="left"></div>
<div class="right"></div>
<div class="middle"></div>
.top{height:100px; background:#ccc;}
.main{height:500px; background:red; position:relative;}
.left{ width:200px; background:blue; height:100%; position:absolute;}
.right{background:#9C9; height:100%; position:absolute; left:210px; right:0;}
.foot{width:100%; height:50px;background:#F63;}
.main{height:600px;position:relative width:100%;}
.left{width:200px;height:600px;float:left;background-color:blue;}
.right{height:600px;float:right;margin-left:200px;width:100%; background-color:green;position:absolute}
.foot{height:150px;background-color:pink;}
我的最后是正确的。。。。。。。。。。。。。。。。。。。。。。
很好,赞一个
声音太小了
.left{ width:200px; height:600px; background:#06F; position:absolute; left:0; top:0;}
.main{ height:600px; margin:0 310px 0 210px; background:#960;}
.right{ height:600px; width:300px; position:absolute;top:0;right:0; background:#9F0;}
要求右侧(right)先加载,左侧(left)后加载;也就是说写html的时候先写right部分,<div class="right">right</div>
<div class="left">left</div>。因而不能直接用float实现宽度方向的自适应,若直接用float,会出现left的顶部和foot的顶部在同一水平线上。
要求右侧(right)先加载,左侧(left)后加载.在写html代码的时候,先写的right部分, <div class="right">right</div>
<div class="left">left</div>。这就会照成如果直接用float实现自适应的话,left部分顶部和foot平齐。
.top{width:100%; background:#999999; height:80px;}
.main{background:#FF0000; width:100%; height:600px;}
.left{background:#0066FF; width:30%; height:600px; float:left}
.right{background:#66CC99; width:65%; height:600px; float:right}
.foot{width:100%;background:#FF6600;height:40px;}
.top{height:80px;margin:0 auto;background-color:#ccc}
.main{height:400px;background-color:#f00}
.left{height:400px;width:200px;background-color:#00f;position:absolute;left:0;top:100px}
.right{height:400px;margin-left:210px;background-color:#0f0}
.foot{height:50px;margin:0 auto;background-color:#f60}
.top{background:#ccc;}
.main{background:red;overflow:hidden;}
.main .left{ width:200px;height:800px;background:blue;float:left;}
.main .right{width:500px;height:800px;background:#0C9;float:right;}
.foot{background:#ff6347;}
.top,.main{width:600px;margin:0 auto;}
.top{height:100px;;background:#ccc;}
.main{height:500px;background:red;}
.left{height:500px;width:200px;background:blue;float:left;}
.right{height:500px;width:390px;background:#9f9;float:right;}
.foot{height:50px;width:600px;background:#f90;margin:0 auto;}
.top{height:50px;background:#CCC;}
.mian{height:500px;background:#9CC;}
.left{width:200px;height:500px;background:#C9F;float:left;}
.foot{background:#9CF;}
感觉没有网页基础布局的老师教的细致。。。
.top{height:100px;background:grey;}
.main{width:100%;height:600px;background:red;}
.left{width:200px;height:600px;background:blue;float:left;}
.right{width:100%;height:600px;background:lightgreen;position:absolute;left:210px;}
.foot{height:50px;background:orange;clear:both;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消