Last active
January 31, 2019 17:55
-
-
Save luisfelipe-dev/87ec9236c68d0fc5362044c8b543945f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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