Guest User

Untitled

a guest
Oct 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <body>
  2. <header>
  3. Header
  4. </header>
  5. <main>
  6. Main
  7. </main>
  8. </body>
  9.  
  10. body {
  11. margin: 0;
  12. padding: 0;
  13. }
  14.  
  15. header {
  16. width: 100%;
  17. height: 300px;
  18. background-attachment: fixed;
  19.  
  20. /* background-image: linear-gradient(to bottom, black 0px, white 300px); */
  21.  
  22. /* The code above is working but the code below is not. Note that the color at the bottom line of header is supposed to be white. */
  23.  
  24. background-image: linear-gradient(to bottom, black 0%, white 100%);
  25. }
  26.  
  27. main {
  28. height: 2000px;
  29. }
Add Comment
Please, Sign In to add comment