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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{height:60px;background:#ccc;}
.main{height:500px;background:red;position:relative;}
.left{height:500px;width:200px;position:absolute;background:blue;top:0;left:0;}
.right{height:500px;background:#6f9;margin-left:210px;}
.foot{height:60px;background:#f60;}
.footer{ height:50px; background:#9F9;clear:both;}
.left{ width:200px; height:600px; background:#ccc;position:absolute; left:0; top:0}
.main{ height:600px;margin:0 310px 0 210px; background:#9CF}
.right{ height:600px; width:300px; position:absolute; top:0;right:0; background:#FCC;}
都设置为float:left;是左对齐,而设置为一个float:left; 另一个float:right是两端对齐,在两个元素占宽达不到100%的情况下,显示是不同的。
.left{ width:300px; height:600px; background:#ccc; float:left;text-align:left;}/*左浮动样式*/
.right{ width:660px; height:600px; background:#FCC; float:right;text-align:left;position:relative;left:20px;}/*右浮动样式*/
还是这位的代码兼容性最好,全部用定位,用浮动多多少少有点问题。
.top{background:gray;height:60px;}

.main{background:red;height:400px;position:relative;}

.left{background:blue;position:absolute;left:0;top:0;width:200px;height:400px;}

.right{background:green;height:400px;margin-left: 210px;}

.foot{background:orange;height:60px;}
写的不严谨
正确答案》》》
.top{height:100px;background:#ccc;}

.main{height:400px;background:red;}

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

.right{height:400px;background:#8b8;width:100%;position:absolute;margin-left:210px;}

.foot{height:55px;background:#e52;}
.top{height:100px;background:#ccc;margin:0 auto;}
.main{margin:0 auto;}
.main{height:800px;width:900px;background:red;}
.left{height:100%;width:200px;float:left;background:blue;}
.right{height:100%;width:690px;background:green;float:right;}
.foot{height:100px;background:#991;}
这不对啊,敲上去不对
宽度不能写死
.top{height:100px;background-color:#EEE;}
.main{height:500px;background-color:#ddf;position:relative;}
.left{width:200px;background-color:#112;position:absolute;left:0;top:0;height:100%;}
.right{margin-left:210px;background-color:#558;height:100%;}
.foot{height:50px;background-color:#991;}
.footer{ height:50px; background:#9F9; clear: both}
加油加油加油
.head,.main,.footer{width:600px; margin:0 auto;}
.head{ height:100px; background:#ccc; }
.main{ height:600px; background:#FCC;}
.footer{ height:50px; background:#9CF;}
.top{height:120px;background:gray;}
.main{height:600px;background:red;}
.left{height:600px;width:240px;background:blue;float:left;}
.right{height:600px;width:700px;background:green;float:right;}
.foot{height:60px;background:orange;}
#juzhong{width:960px;margin:0 auto;}

多设置了一个属性用来自动居中,然后用浮动来完成任务要求。
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消