Advertisement
Guest User

Untitled

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