Skip to content

Instantly share code, notes, and snippets.

@harisrozak
Last active October 24, 2016 08:52
Show Gist options
  • Save harisrozak/e655054bbcf8d03e53311e9b285e3145 to your computer and use it in GitHub Desktop.
Save harisrozak/e655054bbcf8d03e53311e9b285e3145 to your computer and use it in GitHub Desktop.
CSS centering overflow image
.parent {
position: relative;
overflow: hidden;
}
.child {
position: absolute;
top: -9999px;
bottom: -9999px;
left: -9999px;
right: -9999px;
margin: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment