Guest User

Untitled

a guest
Jul 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. .image-container {
  2. position: relative;
  3. overflow: hidden;
  4. width: 10rem; // can differ
  5. height: 10rem; // can differ
  6. }
  7.  
  8. .image {
  9. position: absolute;
  10. top: 50%;
  11. left: 50%;
  12. min-height: 100%;
  13. min-width: 100%;
  14. height: auto;
  15. width: auto;
  16. max-width: none;
  17. max-height: none;
  18. transform: translate3d(-50%, -50%, 0);
  19. }
Add Comment
Please, Sign In to add comment