Skip to content

Instantly share code, notes, and snippets.

@fmsf
Created September 12, 2013 10:13
Show Gist options
  • Save fmsf/6535364 to your computer and use it in GitHub Desktop.
Save fmsf/6535364 to your computer and use it in GitHub Desktop.
Relative css dead center in less
.relative-dead-center {
position: absolute;
top: 50%;
margin-left: 50%;
> * {
margin-top: -50%;
margin-left: -50%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment