我想将一个div放在另一个div的顶部,始终保持100px,即使我正在滚动。我尝试使用jquery .position但无法使其工作。
某物 某物答案 0 :(得分:0)
只需在顶部div添加一个下边距:
#divOne {
margin-bottom: 100px;
}
div {
width: 50px;
height: 50px;
background: #eee;
}

<div id="divOne">Top Div</div>
<div id="divTwo">Bottom Div</div>
&#13;
答案 1 :(得分:0)
为什么不在这样的另一个div中插入一个div:
<div class="motherDiv" style="position:relative;">
<div class="childDiv" style="position:absolute;top:-100px;"></div>
</div>
motherDiv的位置是“相对”,你将childDiv设置为“绝对”。无论whatDiv发生什么,都将应用于childDiv,这对于母亲来说是绝对的=)