嵌套div中的粘性位置CSS不起作用

Rob*_*ski 10 html css layout nested

我有粘性位置的问题。

这有效:

<html>

<body style="height: 2000px; ">
    <div style="height: 100px;"></div>
    <div style="position: sticky; top: 10px;">LOREM IPSUM</div>
</body>

</html>
Run Code Online (Sandbox Code Playgroud)

这不起作用:

<html>

<body style="height: 2000px; ">
    <div style="height: 100px;"></div>
    <div>
            <div style="position: sticky; top: 10px;">LOREM IPSUM</div>
    </div>
</body>

</html>
Run Code Online (Sandbox Code Playgroud)

我的问题是:为什么内部 div 不粘?我用 Chrome 64 对其进行了测试。