Advertisement
Guest User

Untitled

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