Last active
August 29, 2015 14:17
-
-
Save xx4159/929d4e19b22415dec7d0 to your computer and use it in GitHub Desktop.
Micro Clearfix - Scss 플레이스홀더(Placeholder)
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
//micro-clearfix.scss 모듈 호출 | |
@import "micro-clearfix"; | |
#page { | |
nav ul.navi, .article{ | |
@extend %clearfix; | |
} | |
} |
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
//클래스 사용유무 변수 | |
$use-class: false; | |
$hook: if($use-class == true, '.', '%'); | |
//-------------------------------------------- | |
//마이크로 클리어픽스 | |
#{$hook}clearfix::before, | |
#{$hook}clearfix::after, { | |
content: ''; | |
display: table; | |
} | |
#{$hook}clearfix::after {clear: both;} | |
#{$hook}clearfix {zoom: 1} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment