Guest User

Untitled

a guest
Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <style type="text/css">
  2.  
  3. html {
  4. overflow:auto;
  5. }
  6. body {
  7. height: 100%;
  8. width:100%;
  9. margin: 0;
  10. overflow:auto;
  11. }
  12.  
  13. <!-- PUT YOUR CONTENT IN A DIV CALLED "minimum_size" -->
  14. div.minimum_size {
  15.  
  16. min-width: 950px;
  17. min-height: 550px;
  18. width: 100%;
  19. height: 100%;
  20.  
  21. <!-- FOR IE -->
  22. width: expression( Math.max( document.body.clientWidth,950 ) + "px" );
  23. height: expression( Math.max(document.body.clientHeight, 550 ) + "px" );
  24. }
  25.  
  26. </style>
Add Comment
Please, Sign In to add comment