when I am coding , I find that position : sticky is not working. This is a simple demo.
<!DOCTYPE html>
<html>
<head> </head>
<body style='height: 2000px;'>
<div>
<div>
<div>
<div style="height: 300px">
<div
style="
top: 87px;
height: 40px;
background: blue;
margin-top: 10px;
position: sticky;
position: -webkit-sticky;
"
></div>
</div>
</div>
</div>
</div>
</body>
</html>
The effect I wanted in this example was not achieved。Is there something wrong with me ?