Skip to content

Instantly share code, notes, and snippets.

@aalexeev239
Created December 3, 2015 12:04
Show Gist options
  • Save aalexeev239/c5ebf18c87a07ef2cce8 to your computer and use it in GitHub Desktop.
Save aalexeev239/c5ebf18c87a07ef2cce8 to your computer and use it in GitHub Desktop.
zero centering
.zero-centered {
/* get sure that width and height declared */
/* this is useful for images */
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
/* main part */
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment