Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #container {
  2.  
  3. width: 800px;
  4. display: flex;
  5. flex-wrap: wrap;
  6. }
  7.  
  8. .cell {
  9. width: 300px;
  10. flex; 1 auto;
  11. }
  12.  
  13.  
  14. <div id="container">
  15.  
  16. <div class="cell">
  17. Cells with arbitrarily long content.</div>
  18.  
  19. <div class="cell">
  20. </div>
  21.  
  22. <div class="cell">
  23. </div>
  24.  
  25. <div class="cell">
  26. </div>
  27.  
  28. <div class="cell">
  29. </div>
  30.  
  31. </div>
  32.  
  33. </body>
  34. </html>
  35.  
  36. #container {
  37.  
  38. width: 800px;
  39. display: flex;
  40. flex-wrap: wrap;
  41. align-items: flex-start;
  42. }
  43.  
  44. .cell {
  45. width: 300px;
  46. flex: 1 auto;
  47. padding: 10px;
  48. border: 1px solid red;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement