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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
.top{background:red;height:50px;}定义头部
.main{height:600px; background:green;position:relative;}给爸爸一个框
.left{ width:200px;background:blue;height:600px;float:left;position:absolute;top:0;left:0;}修改大儿子
.right{height:600px; background:yellow;margin-left:210px;}修改二儿子
.foot{background:red; height:50px;}
.left{ width:33%; height:600px; background:#ccc; position:absolute; left:0; top:0}
.main{ max-height:600px;margin:-30px 33% 0 33%; background:lightblue}
.right{ height:600px; width:33%; position:absolute; top:0; right:0; background:pink;}

最新回答 / Kaneo
好吧,居然是这么简单的问题:background少输入了一个n
要求右侧(right)先加载,左侧(left)后加载,不懂啊!求解!!!应该是left加了position属性脱离了标准文档流,而right没有脱离文档流,所以right先加载,left后加载。
margin:0 310px 0 210px(上右下左)
.top{background:#ccc;height:100px;}
.main{width:550x;height:500px;background:red;position: relative;}
.left{width:200px;height:500px; background:blue;position: absolute;top: 0;left: 0;}
.right{margin-left:210px; height:500px; background:#9c9;}
.foot{height:50px;background:#f63;}
.top{width:100%; height:80px;background:gray}
.main{height:600px;background:red;}
.left{width:30%;height:600px;background:blue;float:left;}
.right{width:65%;height:600px;background:green;float:right;}
.foot{width:100%;height:50px;background:orange}

已采纳回答 / CIPHER
同学,建议你跟着按一下代码。这样很多问题都会迎刃而解。希望我的回答对你有帮助!
.top{height:100px;background:#CCC;}
.main{background:red;height:300px;position:relative;}
.left{width:200px;height:300px;background:blue;position:absolute;left:0;top:0;}
.right{height:300px;background:#0F9;margin-left:220px}
.foot{height:50px;background:#F51;}

最新回答 / 平少丶
<!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{height:100px;width:100%;background:gray;}
.main{height:500px;width:100%;background:red;position:relative;}
.left{height:100%;width:200px;background:blue;position:absolute;top:0;}
.right{height:100%;margin-left:210px;background:green;}
.foot{height:100px;width:100%;background:orange;}

绝对定位真难玩
我们来定义一下顶部~啊~我们来定义一下底部~啊~
这章还是有好几个坑的 不过踩的舒爽
.top{height:100px;background:gray;}
.main{height:500px;background:red;margin:0 auto;position:relative;}
.left{height:500px;width:200px;background:blue;position:absolute;top:0px;}
.right{height:500px;width:100%px;background:green;margin-left:210px;}
.foot{height:50px;background:orange;margin:0 auto;}

最新回答 / 血海无涯
<style type="text/css">body{ margin:0; padding:0; font-size:30px; color:#fff}.top{width:600px; height:100px; margin:0 auto; background:#8f8f8f;}.main{width:600px; height:400px; margin:0 auto; background:red;}.left{width:200px; height:400px; float:le...
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消