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

如何用CSS进行网页布局

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

已采纳回答 / stone310
relative是相对定位,占空间,absolute绝对定位,不占空间;right块宽度问题发下代码

最赞回答 / lsnFor
margin并不是相对于窗口,而是相对于自身,举个栗子榴莲,外面的刺可以理解为margin(外边距),皮的厚度可以理解为padding(内填充/内边距)第一个盒子head-高度100px第二个盒子main(浮动)-高度600px第三个盒子footer,margin-top:600px;(相当于自身的刺为600px,拉开了与第一个盒子的距离)
.top{width:100%; height:50px;background:#cccccc;}
.main{width:100%; height:300px;background:red;}
.left{width:200px;height:300px;background:blue;position:absolute;}
.right{left:210px;width:100%;height:300px;background:#9acc99;position:absolute;}
.foot{width:100%; height:50px;background:#ee6634;}
。。。。。

已采纳回答 / 天生我才必有用哈
标签加上float属性后,会脱离文档流显示在文档流的上面,就是后加载
讲真,耳机福利
.main{ height:600px; background-color:red; margin:0 auto; position:relative; }
.left{ width:200px; height:600px; background-color:blue; position:absolute; }
.right{height:600px;right:0;left:210px;background-color:green;position:absolute;}

由于浏览器从上往下读取html,所以"right"先于"left"加载。
讲的真的很不错
.main{width:800px; margin:0 auto; background:red; position:relative;}
.left{width:30%; height:700px; background:blue; position:absolute; float:left;}
.right{width:65%; height:700px; background:green;position:absolute; right:0;}
.foot{width:800px; height:150px; background:yellow; margin:0 auto;}

最新回答 / Ecin
<form method="post" action="save.php"><img src="图片地址"><textarea cols="50" rows="10">在这里输入你说的初始值</textarea></form>form是HTML表单  是网站和用户之间交互用的

已采纳回答 / 拴栓
这样一串连续的字符会被创建为一个无名块框,如果中间没有空格,默认不会换行,可以改变换行机制,对middle设置word-wrap: break-word; 让其强制换行,即使没有空格也换行,一般连续的一串字符是一个单词(word),所以是break-word;也可以设置overflow:hidden或者overflow:auto,这样会自动隐藏溢出的内容或者出现滚动条;
.top{background:green;height:50px;width:100%;}
.main{height:500px;width:100%;background:red;position:relative;}
.left{width:29%;height:100%;float:left;background:blue;}
.right{width:70%;height:500px;position:absolute;background:black;right:0px;}
.foot{background:orange;height:30px;width:100%;}
开头声音吵死了
老师说话带口音,说到底是哪里人?
讲得很不错
.top{height:100px;background:#ccc;}
.main{height:600px;background:red;position:relative;}
.left{width:200px;background:blue;height:600px;position:absolute; top:0;left:0;}
.right{background:green;height:600px;margin:0 0 0 210px;}
.foot{height:100px;background:yellow;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消