Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .hero_image {
  2. min-height: 100vh;
  3. background-color:yellow;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-end;
  7. }
  8.  
  9. .main {
  10. max-width:500px;
  11. margin:0 auto;
  12. padding:0 50px;
  13. background-color:pink;
  14. }
  15.  
  16.  
  17. <div class="hero_image">
  18. <div class="main">
  19. <h1>Heading <br>couple of words</h1>
  20. </div>
  21. </div>
  22.  
  23. <div class="main">
  24. <p>Lots of content</p>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement