Created
December 3, 2015 12:04
-
-
Save aalexeev239/c5ebf18c87a07ef2cce8 to your computer and use it in GitHub Desktop.
zero centering
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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