I have an issue with sticky position.
This works:
<html>
<body style="height: 2000px; ">
<div style="height: 100px;"></div>
<div style="position: sticky; top: 10px;">LOREM IPSUM</div>
</body>
</html>
This doesn't work:
<html>
<body style="height: 2000px; ">
<div style="height: 100px;"></div>
<div>
<div style="position: sticky; top: 10px;">LOREM IPSUM</div>
</div>
</body>
</html>
My question is: why the inner div is not sticky? I tested it with Chrome 64.