Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <div class="col">
  2. <div class="section">
  3. </div>
  4. <div class="section">
  5. </div>
  6. <div class="section">
  7. </div>
  8. <div class="section">
  9. </div>
  10. </div>
  11.  
  12. .col {
  13. width: 100%;
  14. display: flex;
  15. flex-wrap: wrap;
  16. }
  17.  
  18. .section {
  19. margin: 10px 0px 0px 10px;
  20. min-width: 250px;
  21. height: 400px;
  22. background-color: gray;
  23. flex: auto;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement