我有一个像这样修复的div
.div1{
position:fixed;
}
我还有另一个div,我想要低于我编码的这个div
.div2{
postion:relative;
}
div2正好在div1后面。我需要定位第二个div吗?像这样......
top:(number of pixels of first div)px;
答案 0 :(得分:0)
关闭 - 使用margin-top而不是top
margin-top:(number of pixels of first div)px;