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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
更正一下错误:position:absolute;要基于position:relative进行定位,如果没有定义position:relative则会想对于html元素定位。而不是相对于body定位。
position:absolute;要基于position:relative进行定位,如果没有定义position:relative则会想对于body定位。
.main{width: 100%;overflow: hidden;background: #ccc;position: relative;}
.left{ width:200px; height:500px; background:blue; position: absolute; left: 0; top: 0;}
.right{height:500px; background:#9C9;margin-left: 210px;}
.foot{ height:50px; background:#F63 }
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px; background:#ccc}

已采纳回答 / cssduoduo
其实我懂得也不多。首先头和尾(right)宽要求自适应,还有你不用每个都加上居中,只要给他们的父级body加就行,他要求右侧先加载,个人觉得right代码应该放在前面

已采纳回答 / 卜芭妮大哭
不用添加abc类的,.left+.right<.main的width,就是要的效果,显示的是.main的背景颜色。
.top{width:100%;height:100px;background:#ccc;}
.main{height:400px;background:red;}
.left{position:absolute;left:0;top:100px;width:200px;height:400px;background:blue;}
.right{margin-left:210px;height:400px;background:#3dc;}
.foot{width:100%;height:50px;background:orange;}
这老师声音真小

最新回答 / 慕移动9181930
谢谢对女汉子的支持。这能正常输出啊
z这里的代码我觉得footer div用margin600px 0 0 0 比较适合。height用main上head也会应用,虽然会被后面的覆盖,看着就不爽。
文档流:将窗体自上而下分成一行一行,并在每行中按从左至右的挨次排放元素,即为文档流。
有三种状况将使得元素离开文档流而存在,分别是浮动、绝对定位、固定定位。
成功运行的部分代码如下:
div{text-align:lfet;}
.left{width:200px;height:500px;background-color:blue;float:left;}
.right{margin-left:201px;height:500px;background-color:#396;}
.foot{height:50px;background-color:#0hh;clear:both;}
&lt;div class=&quot;left&quot;&gt;left&lt;/div&gt;
&lt;div class=&quot;right&quot;&gt;right&lt;/div&gt;

已采纳回答 / 雾隐风华
.main{height:500px;margin:0 auto;background:pink;top:0;}  这个里面的margin不能这么写,你可以直接给mian写一个宽度,加一个float:left; 你在;两个浮动之间写margin没用,可以试试这样.main{height:500px; width:500px; float: left;background:pink;top:0;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消