Guest User

Untitled

a guest
Jul 18th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. body { overflow: hidden; }
  5. * {
  6. font: 11px "Lucida Grande", Arial;
  7. margin: 0px;
  8. padding: 0px;
  9. }
  10. #boxcon {
  11. display: block;
  12. width: 100%;
  13. height: 100%;
  14. overflow: auto;
  15. border: 1px solid blue;
  16. }
  17. #box {
  18. display: block;
  19. height: 90%;
  20. width: 500px;
  21. border: 1px solid red;
  22. }
  23. #box p {
  24.  
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="boxcon">
  30. <div id="box">
  31. <p>The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over
  32.  
  33. the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps
  34.  
  35. over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
  36. </div>
  37. </div>
  38. </body>
  39. </html>
Add Comment
Please, Sign In to add comment