位置固定的奇怪行为

用户名

这是一个代码笔,其意思是:https ://codepen.io/anon/pen/MReEQw和以下代码:

<div id="fixed">
</div>

<div id="content">
</div>


#fixed {
    height: 50px;
    width: 100%;
    background-color: green;
    position: fixed;
}

#content {
    height: 2000px;
    background: grey;
    margin-top: 50px;
}

这是保证金崩溃吗?为什么不能设置固定的div,然后在不重叠的div下设置一个div?

Shoaib

如果您希望div #fixed位于顶部,则添加此属性

#fixed {
    height: 50px;
    width: 100%;
    background-color: green;
    position: fixed;
    top: 0;
}

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章