Skip to content

Instantly share code, notes, and snippets.

@akrug23
Created November 3, 2016 13:44
Show Gist options
  • Save akrug23/c75dce95e4b1e591bb59ad755c50574f to your computer and use it in GitHub Desktop.
Save akrug23/c75dce95e4b1e591bb59ad755c50574f to your computer and use it in GitHub Desktop.
Vertical Alignment Center fuild using transform to center text
.container {
position: relative;
min-height: 100vh;
}
.vertical-center {
position: absolute;
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