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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
三列布局还有更方便的。中间用超出隐藏这种流动布局来做,也很不错。老师完全可以提一下。
.top{height:100; background:#ccc}
.main{width:1000px;height:300px;background:red;margin:0 auto;}
.left{ width:200px;height:300px;background:blue;float:left;}
.right{width:780px; height:300px; background:#FCC; float:right;}
.foot{height:100; background:orange;clear:both;}
.main,.footer{ width:960px;margin:0 auto;}
960px;margin
margin之前多了个空格就不给通过
成功了,让编程来的更猛烈些吧。下一节
.left{ width:200px;
height:600px;
background:#ccc;
left:0;
top:0;
position: absolute;
}
.main{ height:600px; background:#9CF; margin: 0 310px 0 210px;}
.right{
height:600px;
width:300px;
position:absolute;
top:0;
right: 0;;
background:#FCC;
}
ound:#FCC;
}
.top{height:100px; background:#ccc}
.main{height:500px; background:red; position:relative;}
.left{position:absolute;left:0;top:0; width:200px; height:500px; background:blue; }
.right{margin-left:210px;height:500px; background:#9C9;}
.foot{height:50px; background:#F63}
还是要多练

已采纳回答 / 迷途的马尔斯
你好好想想你.right相对移动是相对谁来移动?是不是应该相对老爸(.main)来相对定位?如果你设置absolute就脱离文本流了,就不是相对.main来定位了,是相对浏览器窗口来定位了
.top{height:200px;background:#ccc;}
.main{height:300px;background:red;margin:0 auto;}
.left{ width:200px;height:300px;left:0px;top:200px;background:blue;position:absolute;}
.right{width:80%;height:300px;margin:0 0 0 210px;position:absolute;background:green;}
.foot{height:200px;background:orange;}
position:absolute;绝对定位
margin:0 auto;
嗯,,混合布局
将left和right的顺序换一下,就不用加position:absolute来定位left了,但是要求先加载right,那么就只能用position:absolute来定位
.main{height:600px;magin:0 auto;background:#F00}
.left{ width:200px;height:600px;background:#00C;position:absolute;top:50px}
.right{margin-left:210px;height:600px;background:#3F9;}
淘宝是自适应宽度的?
.top{height:200px;background-color:blue;top:0;left:0;}
.main{height:600px;background-color:red;}
.left{width:200px;height:600px;float:left;background-color:yellow;}
.right{width:400px;height:600px;float:right;background-color:green;}
.foot{height:150px;background-color:#567;margin:0 auto;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消