Created
December 19, 2012 07:37
-
-
Save matori/4335081 to your computer and use it in GitHub Desktop.
[SCSS] 連続した見出しのセレクタ
This file contains 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
/* section がいるかどうかは変数で管理すればいいかな */ | |
%consecutiveHeadings { | |
margin: 1em auto; | |
} | |
@for $i from 1 through 5 { | |
h#{$i} + h#{$i + 1}, | |
h#{$i} + section > h#{$i + 1}:first-child { | |
@extend %consecutiveHeadings; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment