最赞回答 / lsnFor
margin并不是相对于窗口,而是相对于自身,举个栗子榴莲,外面的刺可以理解为margin(外边距),皮的厚度可以理解为padding(内填充/内边距)第一个盒子head-高度100px第二个盒子main(浮动)-高度600px第三个盒子footer,margin-top:600px;(相当于自身的刺为600px,拉开了与第一个盒子的距离)
2016-11-23
.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;}
.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;}
.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"加载。
.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;}
.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表单 是网站和用户之间交互用的
2016-11-21
已采纳回答 / 拴栓
这样一串连续的字符会被创建为一个无名块框,如果中间没有空格,默认不会换行,可以改变换行机制,对middle设置word-wrap: break-word; 让其强制换行,即使没有空格也换行,一般连续的一串字符是一个单词(word),所以是break-word;也可以设置overflow:hidden或者overflow:auto,这样会自动隐藏溢出的内容或者出现滚动条;
2016-11-21
.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%;}
.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%;}