通过搜索,找到父元素然后添加到它们,而不是绝对定位(我必须这样做,不要问为什么)元素在其他元素上,是否可以通过坐标找到某些元素的位置,然后简单地调整窗口大小时重新计算替换的坐标?
问问题
139 次
1 回答
1
你可以通过减去你的利润来做到这一点。
如果要将子项附加到已包含子项的容器中,只需从新子项的边距中减去与现有子项相同的高度。
注意下面的 margin-top:-100px
<div id="parentContainer" style="width:100px;height:100px;float:left">
<div id="child1" style="width:100px;height:100px;float:left;background-color:red">
</div>
<div id="child2" style="width:100px;height:100px;float:left;background-color:blue;
margin-top:-100px">
</div>
</div>
如果你预先做一个 margin-bottom:-100px
于 2012-06-22T01:03:15.340 回答