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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰

已采纳回答 / echo_kinchao
在某些浏览器下 双重外边距产生鬼影黑白间距(我是这样命名的)....

已采纳回答 / Y_du
三列的宽度之和超出其父容器宽度的宽度了
清除浮动有两种方法:1.clear:both 2.overflow:hidden
margin 外边距 1、上右下左 2、上 (右左) 下 3、(上下) (右左)
padding 内边距
三列布局:不能使用float,左右两列绝对定位,分别靠左和靠右,中间列为相对定位。左右margin分别设置为左右两列的宽度即可,如果列与列之间需要间隔,则增加相应的margin值。
左右有间距的二列布局
.left{ width:300px; height:600px; background:#ccc;float:left;}/*左浮动样式*/
.right{ width:660px; height:600px; background:#FCC;float:right;
position:relative;left:30px;}/*右浮动样式*/
为什么说百分比用的少呢。不是应该自适应的吗。固定的话,屏幕不一样,会出现很糟糕的显示效果的。
通俗易懂,讲得很好

已采纳回答 / donaf
你得先把你的代码贴出来,才能够诊断问题
.left{ width:200px; height:600px; background:#ccc; positon:absolute; left:0; top:0}
.main{ height:600px; position:absolute;top:0px;left:210px;right:310px;background:#9CF}
.right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;}
这个应该也行吧,放到游览器是对的。
前端课程听到这,真的越来越精彩思路越来越清晰了。谢谢老师!
.left{ width:200px; height:600px; background:#ccc;position:absolute; left:0; top:0}

.main{ height:600px;margin:0px 310px 0px 210px; background:#9CF}

.right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;}
.top{ height:100px; background:#ccc;}
.main{ height:400px; background:red;}
.left{ width:200px; background:blue;height:400px; position:absolute; left:0; top:100px; }
.right{ height:400px; background:green; margin:0 0 0 210px;}
.foot{height:50px; background:red;}
</style>
.top{height:50px; background:#666; margin:0 auto;}
.left{width:200px; height:500px; background:#033; position:absolute; left:auto; top:50px;}
.right{ height:500px; background:#0F3; margin-left:210px;}
.foot{height:50px; margin:0 auto; background:#C93;}
谢谢老师了,讲得真好。
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消