如何相对定位元素,并使其不占用文档流中的空间?
您尝试做的事情听起来像是绝对定位。但是,另一方面,可以通过创建零宽度,零高度,相对定位的元素(基本上仅用于创建位置参考点)和绝对定位的元素来创建伪相对元素在其中:
<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>