最赞回答 / 噼里啪啦稀里哗啦啊啊啊
你设置的margin,是距离left这个div的上外边距为0,所以会下沉 应该加上position:absolute;top:0; 这样才是距离父级元素body的上外边距为0
2017-01-03
最新回答 / EricZoo
.top{background:#ccc;height:100px;}.main{background:red;height:600px;}.left{background:blue;height:600px;width:200px;}.right{background:yellow;height:600px;width:100%;left:210px;position:absolute;}.foot{background:orange;height:50px;}这是我测试的最少代码实现了,疑问或错误欢迎...
2016-12-28
最赞回答 / EliPec
个人认为:right和left是在main下的块状元素,属于块嵌套着块,当left设定了绝对定位后,right不设置宽度为自适应,所以宽度为main的宽度减去left的宽度。->我的答案,亲测无误。.top{width:100%;background:gray;height:50px;}.main{width:100%;background:red;height:500px;}.left{ width:30%;float:left; background:blue;height:500px;}.ri...
2016-12-27
最新回答 / LittleLeeZi
参照定位的元素必须加入position:relative; 定位元素加入position:absolute,便可以使用top、bottom、left、right来进行偏移定位了。<...code...>
2016-12-25
最新回答 / Hbrsql
.left{ position:absolute; }你的代码中这个冒号":"使用的不是英文标点,造成.left DIV没有绝对定位,还处于正常流中, .main DIV才换行显示.重新输入一个正确的":"即可.
2016-12-20
最赞回答 / Hbrsql
position: absolute: >>position: absolute;margin: 0 310 0 210 background:#9CF >>margin: 0 310px 0 210px; background:#9CFposition:absolute right 0 top 0; >>>position:absolute; right:0; top:0;请规范写法.自己写的代码如果出不来效果应该自己仔细检查一遍.
2016-12-19
最新回答 / 大涧涧dry
这位同学针对你提的模糊问题,我有几点建议:第一:问问题的时候给完整的代码,然后你写想要做出啥效果,实际出现的效果是啥。第二:你的问题我给的回答是:没有加float
2016-12-09