overflow-hidden-ref.html 639 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <style>
  5. .outer-box {
  6. width: 300px;
  7. height: 300px;
  8. background-color: darkblue;
  9. overflow: hidden;
  10. position: relative
  11. }
  12. .inner-box {
  13. width: 200px;
  14. height: 200px;
  15. background-color: orangered;
  16. position: absolute;
  17. top: 100px;
  18. left: 100px;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="outer-box"><div class="inner-box"></div></div>
  24. </body>
  25. </html>