Guest User

Untitled

a guest
Dec 12th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <div class="container">
  2. <img src="[url]">
  3. <img src="[url]">
  4. <img src="[url]">
  5. </div>
  6.  
  7. .container {
  8. display: flex;
  9. flex-direction: row;
  10. height: 300px;
  11. margin-bottom: 20px;
  12. }
  13.  
  14. .container img {
  15. flex: 1;
  16. object-fit: cover;
  17. }
  18.  
  19. .container img {
  20. flex: 1;
  21. min-width: 1%; /* width of images adjust to the parent container */
  22. object-fit: cover;
  23. }
Add Comment
Please, Sign In to add comment