Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 div,我像这样移动它:
.x .y { position: relative; top: 163px; }
现在,它在最初放置的 div 大小处留下了一个空间。有没有办法摆脱那个空间?
谢谢!
使用position: absolute;代替position:relative;...,然后改为top:163px;使用margin-top: 163px;
position: absolute;
position:relative;
top:163px;
margin-top: 163px;
更新您也可以使用它,top: 163px;具体取决于您使用它的目的。
top: 163px;
我想position: absolute在大多数情况下不是一个选择。
position: absolute
努力做到float!
float