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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{width:100%;height:100px;margin:0;background:#ccc;}
.main{width:100%;height:500px;background:red;}
.left{width:200px;height:500px;float:left;background:blue;}
.right{margin-left:210px;width:100%;height:500px;background:green;position:absolute}
.foot{width:100%;height:150px;background:#F90}
上节视频,定左右绝对,定左右上0;中间只设高度,不设宽,six,six,six
.left{ width:200px; height:500px; background:blue; }
.right{ height:500px; background:#9C9;width:100%;margin-left:220px;position:absolute}
为了兼容ie6,左右不用float;右侧加绝对定位加宽度自适应即可
.left{width:200px;height:500px;background-color:blue; float:left;}
.right{height:500px;background-color:green;width:100%;margin-left:210px; position:absolute;}
因为right先加载,所以right用绝对定位position:absolute,left用float浮动;
.top{width:100%;background:#ccc;height:100px;}

.main{width:100%;background:red;height:500px;}

.left{width:200px;background:blue;height:500px;float:left;}

.right{background:#9BCD9B;height:500px;float:right;width:calc(100% - 210px);}

.foot{width:100%;background:#FF7F00;}
.top{height:100px;background:#ccc;}
.main{background:#f00;height:600px;position:relative;overflow:hidden;}父元素定位,overflow隐藏超出的部分
.left{height:600px;width:200px;background:#00f}
.right{height:600px;width:100%;position:absolute;background:#9a9;margin-left:210px;}
.foot{height:100px;background:#aa0;}
.footer{width:960px;height:50px;background:#9F9;margin:600px auto 0 auto;}
0换成auto就能居中了
.top{height:100px;background:#cccccc;}
.main{height:600px;background:#fa0002;}
.left{height:600px;width:33%;background:#0000fe;float:left;}
.right{height:600px;width:65%;background:#9acc99;float:right;}
.foot{height:50px;background:#ff6634;}
为什么学完才59%?
正确代码:
.top{height:100px; background:#4e4e4e;}
.main{width:100%; height:600px;background:red;margin:0 auto;}
.left{ width:30%;height:600px;background:blue;float:left;}
.right{width:68%;height:600px;background:green;float:right;}
.foot{height:100px; background:#F63;}
div是块级元素,会独占一行。当div使用浮动以后,就会脱离原有的位置,所以多个浮动元素可以在一行内。
感觉老师很亲切啊!
注意冒号用英文输入下
.top{height:100px; background:#ccc; margin:0 auto;}
.main{height:600px; background:#F63; margin:0 auto;}
.left{ width:200px; height:600px; background:blue; }
.right{margin-left:210px; width:100%; height:600px; background:#9c9; position:absolute;}
.foot{height:50px; background:#F63; margin:0;}
只要左侧和右侧的宽相加不等于总的宽,就可以实现左侧的效果图啦!
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消