位置固定的奇怪行为

时间:2019-04-06 00:28:01

标签: html css

这是一个带有我的意思的codepen: https://codepen.io/anon/pen/MReEQw和下面的代码:

public object TryDoStuff()
{
    for (int i = 0; i < workers.Count; i++)
    {
        try
        {
            return worker[i].DoStuff();
        }
        catch
        {
            if (i == workers.Count - 1)
            {
                throw; // This preserves the stack trace
            }
            else
            {
                // XXX If workers is changed by another thread here. XXX
                continue; // Try the next worker
            }
        }
    }
}

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

1 个答案:

答案 0 :(得分:0)

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

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