Skip to content

Instantly share code, notes, and snippets.

@yratof
Created March 17, 2015 15:38
Show Gist options
  • Save yratof/ab735227a6ad953ed444 to your computer and use it in GitHub Desktop.
Save yratof/ab735227a6ad953ed444 to your computer and use it in GitHub Desktop.
1, 2, 3 or 4 of an item. Perfect for payment selects
/*
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