Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Last active January 31, 2019 17:55
Show Gist options
  • Select an option

  • Save luisfelipe-dev/87ec9236c68d0fc5362044c8b543945f to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/87ec9236c68d0fc5362044c8b543945f to your computer and use it in GitHub Desktop.
.thumbnail {
position: relative;
width: 200px;
height: 200px;
overflow: hidden;
}
*object-fit: cover;
.thumbnail img {
position: absolute;
left: 50%;
top: 50%;
height: 100%;
width: auto;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
.thumbnail img.portrait {
width: 100%;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment