inline-stacking-context-ref.html 303 B

1234567891011121314151617
  1. <style>
  2. #text {
  3. z-index: 10;
  4. background: orange;
  5. position: relative;
  6. opacity: 0.5;
  7. width: fit-content;
  8. }
  9. #box {
  10. z-index: 5;
  11. width: 50px;
  12. height: 50px;
  13. background: green;
  14. position: relative;
  15. top: -10px;
  16. }
  17. </style><div id="text">hello</div><div id="box"></div>