Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. body {
  2. margin: 0px;
  3. }
  4.  
  5. .parent {
  6. display: flex;
  7. background-color: yellow;
  8. height: 300px;
  9. flex-direction: column;
  10. }
  11.  
  12. .one {
  13. width: 200px;
  14. background-color: red;
  15. height: 50px;
  16. }
  17.  
  18. .two {
  19. width: 200px;
  20. background-color: blue;
  21. height: 50px;
  22. }
  23.  
  24. .three {
  25. width: 200px;
  26. background-color: green;
  27. height: 50px;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement