Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Created January 12, 2017 08:59
Show Gist options
  • Select an option

  • Save kovtunos/74d43529e663628785d6f4aa442e415e to your computer and use it in GitHub Desktop.

Select an option

Save kovtunos/74d43529e663628785d6f4aa442e415e to your computer and use it in GitHub Desktop.
Center element with positin absolute #sass
.box {
position: relative;
&::after {
position: absolute;
content: '';
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