Created
November 25, 2013 12:36
-
-
Save chaitu87/7640640 to your computer and use it in GitHub Desktop.
The Real CSS "Center" Class
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
.center { | |
position: absolute; | |
left: 50%; | |
top: 50%; | |
transform: translate(-50%, -50%); | |
/* | |
Not even necessary really. | |
e.g. Height could be left out! | |
*/ | |
width: 40%; | |
height: 50%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment