Skip to content

Instantly share code, notes, and snippets.

@galaakk
Created September 8, 2012 19:52
Show Gist options
  • Save galaakk/3679163 to your computer and use it in GitHub Desktop.
Save galaakk/3679163 to your computer and use it in GitHub Desktop.
CSS : Absolute center an image
img {
position: absolute;
top: 50%;
left: 50%;
width: 500px;
height: 500px;
margin-top: -250px; /* Half the height */
margin-left: -250px; /* Half the width */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment