Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Created September 24, 2017 08:50
Show Gist options
  • Save dmjcomdem/322d4a93ed39b3d723c216ff797653cb to your computer and use it in GitHub Desktop.
Save dmjcomdem/322d4a93ed39b3d723c216ff797653cb to your computer and use it in GitHub Desktop.
Centering a picture in a block
div {
width: 400px;
height: 400px;
margin: 100px auto;
border: 1px solid #000;
position: relative;
}
img {
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
margin: auto;
max-width: 100%;
max-height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment