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

如何用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

已采纳回答 / qq_杜飞_03761348
他们设置 310 和210 是为了让效果图和案例一样,中间div和两边有空白的间距。由于中间的div设置的margin 所以,它的距离是相对于body的距离,你疑问为啥不是和左右两个div的距离,是因为,左右两个div由于设置了absolute 脱离了文档流,也就是相当于相对其他div来说,它类似于透明的空气一般。

最赞回答 / qq_冇_7
定义了width:100%,就相当于浏览器窗口的可视宽度,或者是已定义宽度的body的宽度。不定义宽度的话,块级元素宽度会自适应。如果不再增加别的样式,宽度也就相当于100%。在此基础上,如果为块级元素增加margin-left 和 margin-right,那么定义了width:100%的块级元素宽度不变,仍就相当于浏览器窗口的可视宽度,或者是已定义宽度的body的宽度。而未定义宽度的块级元素的宽度会在浏览器基可视宽度或者是已定义宽度的body的宽度础上自动减去magin的值。
.left{ width:200px; height:500px; background:blue; }
.right{ height:500px; background:#9C9;width:100%;margin-left:220px;position:absolute}
为了兼容ie6,左右不用float;右侧加绝对定位加宽度自适应即可

最新回答 / 慕莱坞2413426
你的代码在我这边可以显示,参考我的<...code...>
.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使用浮动以后,就会脱离原有的位置,所以多个浮动元素可以在一行内。
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消