Skip to content

Instantly share code, notes, and snippets.

@robdecker
Created February 25, 2020 17:48
Show Gist options
  • Save robdecker/2af6e33a490d4ea54909708d2b2bbbd6 to your computer and use it in GitHub Desktop.
Save robdecker/2af6e33a490d4ea54909708d2b2bbbd6 to your computer and use it in GitHub Desktop.
[Vertical align image in overflow:hidden div] #css
div {
position: relative;
overflow: hidden;
}
img {
position: absolute;
top: 50%;
transform: translate(0, -50%);
}
<div>
<img src="some-image.jpg" />
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment