screen_ie.css 563 B

123456789101112131415161718192021222324
  1. @charset "utf-8";
  2. /*
  3. * CSS Document
  4. * Written by Ryan Yonzon
  5. * http://ryan.rawswift.com/
  6. */
  7. /*
  8. * IE hack
  9. */
  10. html, body {
  11. /*margin:0px;*/
  12. /* hide browser's main scrollbar */
  13. /*overflow:hidden; */
  14. /* make sure we'll use 100% of the page's height */
  15. /*height:100%; */
  16. }
  17. #main_container {
  18. width:100%; /* make sure we'll use 100% of page's width */
  19. background-color:#ffffff; /* DO NOT REMOVE THIS; or you'll have issue w/ the scrollbar, when the mouse pointer is on a white space */
  20. overflow-x: hidden;
  21. overflow-y: scroll;
  22. }