overlayscrollbar-sorting-ref-visible.html 378 B

12345678910111213141516171819202122232425
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/publicdomain/zero/1.0/
  4. -->
  5. <!DOCTYPE html>
  6. <meta charset="utf-8">
  7. <title>Reference with scrollbar</title>
  8. <style>
  9. #outer {
  10. width: 200px;
  11. height: 200px;
  12. overflow: auto;
  13. background: cyan;
  14. }
  15. #content {
  16. height: 400px;
  17. }
  18. </style>
  19. <div id="outer"><div id="content"></div></div>