How does the css setting absplute level go beyond the parent setting to the highest?

the parent is fixed positioning, the child is relative positioning, the innermost is absolute positioning, and there is a pink fixed positioning. How to set the absolute positioning green box to
level the highest display on it
link description

Css
Jul.01,2021

put < div class= "three" > < / div > after second, which is a sibling relationship.


change the level:

<div class="ffixed">
  <div class="three"></div>
  <div class="first">
    <div class="second"></div>
  </div>
</div>
Menu