Skip to content

Instantly share code, notes, and snippets.

@NapoleonWils0n
Created November 1, 2012 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NapoleonWils0n/3996228 to your computer and use it in GitHub Desktop.
Save NapoleonWils0n/3996228 to your computer and use it in GitHub Desktop.
css: absolute center image 3
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