Advertisement
Our-magestry

Untitled

Mar 14th, 2020
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. .div1 {
  6. left:0px;
  7. top:0px;
  8. bottom:0px;
  9. overflow:hidden;
  10. width:230px;
  11. position:absolute;
  12. border: 2px solid blue;
  13. }
  14.  
  15. .div2 {
  16. top:0px;
  17. left:713px;
  18. overflow:hidden;
  19. width:22%;
  20. height:75%;
  21. position:absolute;
  22. border: 1px solid red;
  23. }
  24.  
  25. .div3 {
  26. top:0px;
  27. right:50px;
  28. bottom:0px;
  29. left:0px;
  30. width:220px;
  31. position:absolute;
  32. border: 2px solid green;
  33. }
  34.  
  35. .div4 {
  36. right:150px;
  37. top:0px;
  38. bottom:0px;
  39. width:220px;
  40. position:absolute;
  41. border: 1px solid yellow;
  42. }
  43.  
  44. .div5 {
  45. top:0px;
  46. bottom:0px;
  47. width:150px;
  48. right:0%;
  49. overflow-x:hidden;
  50. overflow-y:scroll;
  51. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  52. position:absolute;
  53. border: 1px solid black;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58.  
  59. <div class="div1">1</div>
  60. <br>
  61. <div class="div2">2 </div>
  62. <br>
  63. <div class="div3">3 </div>
  64. <br>
  65. <div class="div4">4 </div>
  66. <br>
  67. <div class="div5">5 </div>
  68.  
  69. </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement