Skip to content

Instantly share code, notes, and snippets.

@jolyon129
Created April 1, 2020 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jolyon129/3740722471fe58226d51280bf9cf3197 to your computer and use it in GitHub Desktop.
Save jolyon129/3740722471fe58226d51280bf9cf3197 to your computer and use it in GitHub Desktop.
The Ultimate Centering in CSS
/*
https://twitter.com/jacobmparis/status/1245193222181326848?s=21
*/
.center{
text-align: center;
align-items: center;
align-content: center;
justify-content: center;
justify-self: center;
justify-items: center;
place-items: center;
vertical-align: center;
line-height: 100%;
margin: auto;
position: absolute;
left: 50%;
right: 50%;
transform: translate(-50%,-50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment