Created
March 17, 2015 15:38
-
-
Save yratof/ab735227a6ad953ed444 to your computer and use it in GitHub Desktop.
1, 2, 3 or 4 of an item. Perfect for payment selects
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
/* | |
Selecting elements by amount of them | |
------------------------------------ | |
*/ | |
select { | |
/* One Child*/ | |
&:nth-of-type(1):nth-last-child(1), | |
&:only-child { | |
width: 100%; | |
} | |
/* Two Children*/ | |
&:nth-of-type(1):nth-last-child(2), | |
&:nth-of-type(2):nth-last-child(1){ | |
width: 49%; | |
} | |
/* Three Children */ | |
&:nth-of-type(1):nth-last-child(3), | |
&:nth-of-type(2):nth-last-child(2), | |
&:nth-of-type(3):nth-last-child(1) { | |
width: 32.3333%; | |
} | |
/* Four Children */ | |
&:nth-of-type(1):nth-last-child(4), | |
&:nth-of-type(2):nth-last-child(3), | |
&:nth-of-type(3):nth-last-child(2), | |
&:nth-of-type(4):nth-last-child(1) { | |
width: 24%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment