我有两个这样的div:
<div style="position:fixed;height:100px;top:0;left:0;right:0;z-index:999;">
// some fixed content here...
</div>
<div>
// some other content here...
</div>
如您所见,第一个div的位置已固定。我遇到的问题是第二个div与第一个div重叠。知道如何解决这个问题,同时保留我的第一个div fixed
请不要在第二个div或其他东西上放置某种填充顶部吗?
谢谢
答案 0 :(得分:2)
将第二个div的margin-top设置为大于100px的值。这样它就会出现在第一个div的正下方