79110262

Date: 2024-10-21 13:32:14
Score: 0.5
Natty:
Report link

If your parent element uses display: flex, you should set your floating div to align-self: flex-start or something suits your case.

<div id="parent" style="display: flex">
  <div id="child" style="position: sticky; top: 0; align-self: flex-start">
    Content
  </div>
</div>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kayahan Kahrıman