如何相对定位元素,并且不占用文档流中的空间?
您尝试做的事情听起来像是绝对定位。另一方面,您可以通过创建一个零宽度、零高度、相对定位的元素来制作一个伪相对元素,基本上只是为了创建位置的参考点,以及一个绝对定位的元素其中:
<div style="position: relative; width: 0; height: 0"> <div style="position: absolute; left: 100px; top: 100px"> Hi there, I'm 100px offset from where I ought to be, from the top and left. </div> </div>