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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
66666666666
将margin设置为margin:0 310px 0 210px可以实现居中空白的效果。这样做的原理是因为left和right都是绝对定位脱离了文档流所以我们需要设置离它们各自的宽度+10px。

最新回答 / Amazingcoder
无论怎么样写吧,只要能达到效果就行,我验证了是对的
.left{ width:300px; height:600px; background:#ccc; float:left;}/*左浮动样式*/
.right{ width:660px; height:600px; background:#FCC; float:right;margin:0 -10px;}/*右浮动样式*/
bucuo
thx!!!!!!!!!!!
.top{width:100%;background:#ccc;}
.main{width:100%;background:red;position:relative;}
.left{width:200px;height:500px;background:#00c;}
.right{width:100%;height:500px;position:absolute;margin-left:210px;background:#0c6;}
.foot{width:100%;background:orange;height:100px;clear:both;}

已采纳回答 / 慕斯卡0901352
暂时想出两种方法:right部分删除“position:absolute;”right部分增加宽度设置,如“width:60%;”
将margin设置为margin:0 310px 0 210px可以实现居中空白的效果。这样做的原理是因为left和right都是绝对定位脱离了文档流所以我们需要设置离它们各自的宽度+10px。不懂的同学请观看《网页布局基础》的绝对定位。
先使用相对定位main父元素,然后在使用绝对定位,定位子元素left,top和left均为0。right设置margin-left:210px数值
中间位置怎么产生了仔边距,明明设置了,0 200 0 300
.main{width:100%;background:red;height:600px;position:relative;}
.left{position:absolute;background:blue;height:600px;width:200px;left:0px;top:0px;}
.right{background:#2effa4;height:600px;margin:0px 0px 0px 210px;}
.head,.main{ width:960px;margin:0px auto;}
.left{ width:220px; height:600px; background:#ccc;float:left;}
.r_sub_left{ width:540px; height:600px; background:#9C3; float:left}
.r_sub_right{ width:200px; height:600px; background:#9FC; float:right;}
.footer{ height:50px; background:#9F9;clear:right;}
.top{height:100px;background:#ccc;}
.main{height:500px; margin:0 auto; position:relative;}
.left{ width:200px; height:500px; position:absolute; left:0; top:0; background:blue;}
.right{ height:500px; margin-left:200px; background:yellow;}
.foot{height:50px;background:#F63;}
</style>
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消