位置修正了如何修复

时间:2013-08-18 23:09:11

标签: html css css3

考虑一下我们

<div style="position:fixed;">Hello</div>
<div>Hi there</div>

固定定位的div将从文档流中删除。这将导致两个div彼此重叠。 解决此问题的最佳方法是什么?我可以在第二个div中使用margin-top,但它似乎更像是一个技巧而不是一个解决方案。

2 个答案:

答案 0 :(得分:1)

这不是一招。这是解决方案。或许所有好的解决方案都有点棘手。但这可能是正确的,基于你所展示的一点点。

也就是说,第二个div的margin-top应该等于第一个div的高度。

答案 1 :(得分:0)

<div style="position:fixed;">Hello</div>
<div style="position: relative; top: 20px">Hi there</div>

使用您想要的任何尺寸更改20px