Advertisement
Guest User

Untitled

a guest
Apr 25th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1.  
  2. //index.html
  3. <div class= "works-gallery">
  4. <div class="item1"><img src="img/works/nature.jpg" alt=""></div>
  5. <div class="item2"><img src="img/works/urban.jpg" alt=""></div>
  6. <div class="item3"><img src="img/works/people.jpg" alt=""></div>
  7. <div class="item4"><img src="img/works/wedding.jpg" alt=""></div>
  8. <div class="item5"><img src="img/works/architecture.jpg" alt=""></div>
  9. <div class="item6"><img src="img/works/animals.jpg" alt=""></div>
  10. </div>
  11.  
  12.  
  13. //css
  14. .works-gallery
  15. display: flex
  16. width: 100%
  17. flex-wrap: wrap
  18. .item1
  19. width: 60% // próbowałem ustawiać coś z width, ale ten jeden dłuższy obrazek spycha resztę na dół i pod pierwszym pojawia się to białe pole :/
  20. .item2
  21. width: 30%
  22. .item3
  23. width: 30%
  24. .item4
  25. width: 30%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement