Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <div class="container">
  2.  
  3. <header>
  4. header
  5. </header>
  6.  
  7. <section id = "section-1">
  8. content
  9. </section>
  10.  
  11. <section id = "section-2">
  12. content 2
  13. </section>
  14. </div>
  15.  
  16.  
  17.  
  18. html {
  19. height: 100%;
  20. }
  21.  
  22. body {
  23. height: 100%;
  24. width: 100%;
  25. margin: 0;
  26. padding: 0;
  27. border: 3px solid black;
  28. }
  29.  
  30. .container {
  31.  
  32. }
  33.  
  34. header {
  35. height: 100px;
  36. background: red;
  37. }
  38.  
  39. #section-1 {
  40. height: 980px;
  41. }
  42.  
  43. #section-2 {
  44. height: 1080px;
  45. background: red;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement