Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JulienSansot/1577e686d5b6990ed8e551db9759236e to your computer and use it in GitHub Desktop.
Save JulienSansot/1577e686d5b6990ed8e551db9759236e to your computer and use it in GitHub Desktop.
center image with overflow hidden
div.preview_image{
height: 90px;
width: 91px;
overflow: hidden;
position: relative;
img {
position: absolute;
top: -100%;
bottom: -100%;
left: -100%;
right: -100%;
margin: auto;
height: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment