Skip to content

Instantly share code, notes, and snippets.

@horsfallnathan
Created May 25, 2020 19:18
Show Gist options
  • Save horsfallnathan/eaccb527e1ae89b6cd6bda2d76271ded to your computer and use it in GitHub Desktop.
Save horsfallnathan/eaccb527e1ae89b6cd6bda2d76271ded to your computer and use it in GitHub Desktop.
SCSS snippets I always forget

Vertical centering with absolute positioning

.container{
    position:relative;
}
.content{
    position:absolute;
    top:50%;
    bottom:50%;
    transform:translate(-50%, -50%);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment