Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. div {
  2. display: flex;
  3. flex-wrap: wrap;
  4. align-items: center;
  5. justify-content: flex-start;
  6. }
  7.  
  8. div>img {
  9. width: 100%;
  10. }
  11.  
  12. @media (min-width:1024px){
  13. div {
  14. flex-wrap:nowrap;
  15. align-items: unset;
  16. }
  17.  
  18. div>img{
  19. width: 40%;
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement