Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. <!-- position: static, fixed, absolute, relative -->
  10. <style>
  11. body {
  12. height: 300vh;
  13. }
  14.  
  15. div {
  16. width: 200px;
  17. height: 200px;
  18. background-color: pink;
  19. /* margin: 10px; */
  20. }
  21.  
  22. .s1 {
  23. position: fixed;
  24. left: 200px;
  25. top: 30%;
  26. background-color: red;
  27. z-index: 3;
  28.  
  29. }
  30.  
  31. .s2 {
  32. position: absolute;
  33. background-color: blue;
  34. bottom: 30%;
  35. left: 10%;
  36. z-index: 2;
  37.  
  38. }
  39.  
  40. .s3 {
  41. position: relative;
  42. background-color: orange;
  43. left: 40px;
  44. top: 150px;
  45. z-index: 1;
  46. }
  47.  
  48. .s4 {
  49. position: absolute;
  50. top: 50px;
  51. left: 50px;
  52. z-index: 0;
  53. }
  54.  
  55. section {
  56. background-color: green;
  57. position: relative;
  58. /* overflow: hidden; */
  59. }
  60. </style>
  61. </head>
  62.  
  63. <body>
  64. <header>
  65. <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Illo ut libero cupiditate illum fugiat magni porro
  66. culpa
  67. tenetur temporibus odio, optio quaerat nam quisquam consequuntur, cum assumenda voluptatum provident
  68. commodi.</p>
  69. </header>
  70. <section>
  71. <div class="s1"></div>
  72. <div class="s2"></div>
  73. <div class="s3"></div>
  74. <div class="s4"></div>
  75. <div class="s5"></div>
  76. </section>
  77. </body>
  78.  
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement