Guest User

Untitled

a guest
Jul 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <div class="item">
  2. <div class="img-wrapper">
  3. <img class='img'>
  4. </div>
  5. </div>
  6.  
  7. .img-wrapper {
  8. width: 220px;
  9. height: 220px;
  10. border: solid 8px #ffffff;
  11. border-radius: 110px;
  12. overflow: hidden;
  13. }
  14. .img {
  15. width: 100%;
  16. height: 100%;
  17. -o-object-fit: cover;
  18. object-fit: cover;
  19. -webkit-transition: 0.2s;
  20. transition: 0.2s;
  21. border-radius: 110px;
  22. }
  23. .item:hover .img-wrapper img {
  24. transform: scale(1.1);
  25. }
Add Comment
Please, Sign In to add comment