Skip to content

Instantly share code, notes, and snippets.

@blaswan
Last active December 25, 2015 18:18
Show Gist options
  • Save blaswan/7019006 to your computer and use it in GitHub Desktop.
Save blaswan/7019006 to your computer and use it in GitHub Desktop.
가운데 정렬하기 위한 less Mixin
.wrapped {
position: relative;
width: 100%;
height: 100%;
}
.centered (@width, @height) {
position: absolute;
top: 50%;
left: 50%;
margin: -(@height / 2) 0 0 -(@width / 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment