这是一个典型的css布局,
.rel {
background: brown;
position: relative;
width: 100px;
height: 100px;
top: 100%;
display: inline-block;
}
我制作了这个小提琴来展示相对和绝对对top: 100%;
.
在同一个小提琴中,单击第二个红色 div,并观察它的行为,就好像它被定位为 100% 向下一样。
这是奇怪还是什么?动画时的 div 正在top: 100%;
考虑,但在正常情况下它什么也不做。
编辑
随着添加,
html, body {
height: 100%;
}
将允许您使用,top: 100%;
但是当元素本身不是时,为什么.animate();
要考虑顶部?