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

如何用CSS进行网页布局

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

已采纳回答 / 慕粉3914370
relative是相对定位,占空间,absolute绝对定位,不占空间;
图中各区域RGB颜色:

top:204 204 204

main:252 3 1

left: 0 0 254
right: 154 204 153

foot:255 102 52

使用方法:.top{ background-color: rgb(204,204,204); }

最新回答 / LittleLeeZi
参照定位的元素必须加入position:relative; 定位元素加入position:absolute,便可以使用top、bottom、left、right来进行偏移定位了。<...code...>

已采纳回答 / forever_13
footer{width:100%}
啊。救命,,,,,
.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:none
显示颜色用overflow:hidden; 在footer用也可以的。

已采纳回答 / 莫道相思尽
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-...
稍微再讲深点吧!!!
这是三列布局 大家看下呃
.top{width:100%; height:100px; background:gray;}
.main{width:100%; height:300px; background:red;}
.right{width:100%; height:300px;margin-left:210px;position:absolute; background:green;}
.left{width:200px; height:300px;background:blue;}
.foot{width:100%;height:100px;background:orange;}
top{width:100%;background:red;}
.main{width:100%;height:300px;background:yellow;position:relative;}
.left{ width:200px;height:300px;background:green;position:absolute;top:0;left:0;}
.right{height:300px;background:blue;margin-left:210px;}
.foot{width:100%;background:red;}
啊~,啊~,啊~,啊~,啊~,啊~,
footer所在的div元素本来就应该在最下边啊,因为任务3用了float:right浮动,.footer中需要清除右边的浮动才能显示出颜色。clear:right;
main 不设置相对定位,是实现不了的吧
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消