scrollable-box-with-nested-stacking-context-ref.html 558 B

1234567891011121314151617181920212223242526272829303132
  1. <style>
  2. * {
  3. scrollbar-width: none;
  4. }
  5. #container {
  6. width: 300px;
  7. height: 500px;
  8. overflow: auto;
  9. position: relative;
  10. border: 2px solid black;
  11. }
  12. .content {
  13. background-color: lightblue;
  14. height: 100%;
  15. }
  16. .box {
  17. background-color: magenta;
  18. width: 100px;
  19. height: 50px;
  20. position: absolute;
  21. top: 0px;
  22. right: 50px;
  23. }
  24. </style>
  25. <div id="container">
  26. <div class="content">
  27. <div class="box"></div>
  28. </div>
  29. </div>