Created
April 23, 2017 03:15
-
-
Save derekbtw/be4345567c01c27aaf28b216db82ce67 to your computer and use it in GitHub Desktop.
Align element directly in the center of the screen (vertically & horizontally) with CSS
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
.centered { | |
position: fixed; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment