Last active
December 25, 2015 18:18
-
-
Save blaswan/7019006 to your computer and use it in GitHub Desktop.
가운데 정렬하기 위한 less Mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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