overflow-not-scrollable-2-ref.html 291 B

1234567891011121314151617181920
  1. <!DOCTYPE HTML>
  2. <style type="text/css">
  3. div {
  4. height: 200px; width: 200px; overflow: hidden;
  5. font-size: 50px;
  6. font-weight: bold;
  7. }
  8. span {
  9. box-shadow: 100px 100px 30px black;
  10. /* work around potential font overflow */
  11. margin-left: 5px;
  12. }
  13. </style>
  14. <div>
  15. <span>text</span>
  16. </div>