Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 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: 40px;
  13. background-color: red;
  14. height: 100px;
  15. flex-grow: 1;
  16. flex-shrink: 1;
  17. }
  18.  
  19. .two {
  20. width: 50px;
  21. background-color: blue;
  22. height: 100px;
  23. flex-grow: 2;
  24. flex-shrink: 1;
  25. }
  26.  
  27. .three {
  28. width: 60px;
  29. background-color: green;
  30. height: 100px;
  31. flex-grow: 3;
  32. flex-shrink: 1;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement