348

I'm probably answering my own question, but I'm extremely curious.

I know that CSS can select individual children of a parent, but is there support to style the children of a container, if its parent has a certain amount of children.

for example

container:children(8) {
  // style the parent this way if there are 8 children
}

I know it sounds weird, but my manager asked me to check it out, haven't found anything on my own so I decided to turn to SO before ending the search.

vsync
  • 87,559
  • 45
  • 247
  • 317
Brodie
  • 7,569
  • 8
  • 32
  • 54
  • 3
    Quantity Query SCSS Mixin: http://codepen.io/jakob-e/pen/wgGpeP – Jakob E Apr 13 '17 at 12:11
  • Jun 3 '20 edit by @vsync should be reverted, as it changes the code sample in a way that does not agree in any way with the question itself or its answers. – Nik Rolls Jan 13 '21 at 23:53
  • @NikRolls - My edit should ***not be reverted***. I merely condensed the problem to its essence - which is *how to select a parent according to number of child nodes* it has. If you can do that, then obviously you can do what the OP wanted in the first place, but the **core** is that selector itself and not anything that comes after it. – vsync Jan 14 '21 at 09:11

7 Answers7

760

Clarification:

Because of a previous phrasing in the original question, a few SO citizens have raised concerns that this answer could be misleading. Note that, in CSS3, styles cannot be applied to a parent node based on the number of children it has. However, styles can be applied to the children nodes based on the number of siblings they have.


Original answer:

Incredibly, this is now possible purely in CSS3.

/* one item */
li:first-child:nth-last-child(1) {
/* -or- li:only-child { */
    width: 100%;
}

/* two items */
li:first-child:nth-last-child(2),
li:first-child:nth-last-child(2) ~ li {
    width: 50%;
}

/* three items */
li:first-child:nth-last-child(3),
li:first-child:nth-last-child(3) ~ li {
    width: 33.3333%;
}

/* four items */
li:first-child:nth-last-child(4),
li:first-child:nth-last-child(4) ~ li {
    width: 25%;
}

The trick is to select the first child when it's also the nth-from-the-last child. This effectively selects based on the number of siblings.

Credit for this technique goes to André Luís (discovered) & Lea Verou (refined).

Don't you just love CSS3?

CodePen Example:

Sources:

Matthemattics
  • 8,354
  • 1
  • 18
  • 18
  • The OP has since edited their question as well. I cleaned up the comments, but for the sake of clarity I think I'll leave your edit in. You can revert it on your own volition if you find it superfluous. – BoltClock Dec 25 '14 at 04:47
  • @BoltClock Thanks, I've updated my answer to reduce any future confusion. – Matthemattics Dec 29 '14 at 20:16
  • 9
    Very handy. I wrote a SASS mixin that makes use of this technique: http://codepen.io/anon/pen/pJeLdE?editors=110 – SimpleJ Jun 03 '15 at 21:33
  • This answer is incorrect. On the latest version of Chrome, li:first-child:nth-last-child(1) calls ALL children instead of one. Downvote this, please. – Ian S Sep 07 '15 at 10:17
  • 1
    @IanSteffy I just tested this on Chrome 45.0.2454.85 (64-bit) and it works fine… ? – Matthemattics Sep 09 '15 at 00:30
  • 1
    @IanSteffy I added a codepen… feel free to fork it w/ an example of this technique not working so we can see what you mean – Matthemattics Sep 09 '15 at 00:49
  • 2
    If it works in codepen but not with my project then it is most definitely my fault. My bad. This answer is correct! Correct, I say! – Ian S Sep 09 '15 at 13:30
  • 1
    @IanSteffy :D no worries, dude! – Matthemattics Sep 09 '15 at 23:43
  • 1
    @Hypermattt there is a way to achive this for "three or more children"? – robsonrosa Nov 04 '15 at 16:52
  • @robsonrosa Hmm… maybe style for a default case of "three or more siblings", then reset the specific cases of just one, and just two, siblings? – Matthemattics Dec 03 '15 at 20:46
  • 4
    Might be nice to add why this works, for people not used to multiple pseudo selectors (like I was until now ;). What is happening here is that this selects the child that is at the same time child x from the start/top and child y from the end. And so this only selects something if there are exactly x+y children. – Legolas Aug 29 '16 at 18:23
  • 7
    Note that instead of `:first-child:nth-last-child(1)` you can also use `:only-child`. – Adam Reis Sep 04 '17 at 23:08
  • Here's a nice expanded example page on this technique: https://www.growingwiththeweb.com/2014/06/detecting-number-of-siblings-with-css.html – Joe DF Aug 13 '18 at 20:15
  • Why are the near duplicate `~` rules necessary for two+ rules? They seem redundant. The code pen example doesn't change for me if they are removed. – AnnanFay Jan 06 '20 at 08:15
  • 1
    @AnnanFay Because `li:first-child:nth-last-child` only selects the first element, not all of them. The general sibling combinator (`~`) is needed to select all of the elements. – Matthemattics Jan 07 '20 at 19:15
47

No. Well, not really. There are a couple of selectors that can get you somewhat close, but probably won't work in your example and don't have the best browser compatibility.

:only-child

The :only-child is one of the few true counting selectors in the sense that it's only applied when there is one child of the element's parent. Using your idealized example, it acts like children(1) probably would.

:nth-child

The :nth-child selector might actually get you where you want to go depending on what you're really looking to do. If you want to style all elements if there are 8 children, you're out of luck. If, however, you want to apply styles to the 8th and later elements, try this:

p:nth-child( n + 8 ){
    /* add styles to make it pretty */
}

Unfortunately, these probably aren't the solutions you're looking for. In the end, you'll probably need to use some Javascript wizardry to apply the styles based on the count - even if you were to use one of these, you'd need to have a hard look at browser compatibility before going with a pure CSS solution.

W3 CSS3 Spec on pseudo-classes

EDIT I read your question a little differently - there are a couple other ways to style the parent, not the children. Let me throw a few other selectors your way:

:empty and :not

This styles elements that have no children. Not that useful on its own, but when paired with the :not selector, you can style only the elements that have children:

div:not(:empty) {
    /* We know it has stuff in it! */
}

You can't count how many children are available with pure CSS here, but it is another interesting selector that lets you do cool things.

derekerdmann
  • 16,379
  • 9
  • 67
  • 104
22

NOTE: This solution will return the children of sets of certain lengths, not the parent element as you have asked. Hopefully, it's still useful.

Andre Luis came up with a method: http://lea.verou.me/2011/01/styling-children-based-on-their-number-with-css3/ Unfortunately, it only works in IE9 and above.

Essentially, you combine :nth-child() with other pseudo classes that deal with the position of an element. This approach allows you to specify elements from sets of elements with specific lengths.

For instance :nth-child(1):nth-last-child(3) matches the first element in a set while also being the 3rd element from the end of the set. This does two things: guarantees that the set only has three elements and that we have the first of the three. To specify the second element of the three element set, we'd use :nth-child(2):nth-last-child(2).


Example 1 - Select all list elements if set has three elements:

li:nth-child(1):nth-last-child(3),
li:nth-child(2):nth-last-child(2),
li:nth-child(3):nth-last-child(1) {
    width: 33.3333%;
}

Example 1 alternative from Lea Verou:

li:first-child:nth-last-child(3),
li:first-child:nth-last-child(3) ~ li {
    width: 33.3333%;
}


Example 2 - target last element of set with three list elements:

li:nth-child(3):last-child {
    /* I'm the last of three */
}

Example 2 alternative:

li:nth-child(3):nth-last-child(1) {
    /* I'm the last of three */
}


Example 3 - target second element of set with four list elements:

li:nth-child(2):nth-last-child(3) {
    /* I'm the second of four */
}
ifugu
  • 578
  • 4
  • 11
  • 1
    again, this is number of siblings, not children – Tomas Jan 18 '14 at 15:14
  • @TMS see accepted answer's edit - the OP's question was awkwardly phrased – ifugu Jul 02 '14 at 22:39
  • This approach is perfect for when each element needs to be styled differently based on its position in the list, e.g. to get even circular transforms: `li:nth-child(3):nth-last-child(1) { transform: rotate(120deg); } li:nth-child(2):nth-last-child(2) { transform: rotate(240deg); }` and so on... – Greg Smith Aug 11 '16 at 08:26
12

Working off of Matt's solution, I used the following Compass/SCSS implementation.

@for $i from 1 through 20 {
    li:first-child:nth-last-child( #{$i} ),
    li:first-child:nth-last-child( #{$i} ) ~ li {
      width: calc(100% / #{$i} - 10px);
    }
  }

This allows you to quickly expand the number of items.

mwtidd
  • 121
  • 1
  • 3
6

If you are going to do it in pure CSS (using scss) but you have different elements/classes inside the same parent class you can use this version!!

  &:first-of-type:nth-last-of-type(1) {
    max-width: 100%;
  }

  @for $i from 2 through 10 {
    &:first-of-type:nth-last-of-type(#{$i}),
    &:first-of-type:nth-last-of-type(#{$i}) ~ & {
      max-width: (100% / #{$i});
    }
  }
6

yes we can do this using nth-child like so

div:nth-child(n + 8) {
    background: red;
}

This will make the 8th div child onwards become red. Hope this helps...

Also, if someone ever says "hey, they can't be done with styled using css, use JS!!!" doubt them immediately. CSS is extremely flexible nowadays

Example :: http://jsfiddle.net/uWrLE/1/

In the example the first 7 children are blue, then 8 onwards are red...

AlanFoster
  • 7,582
  • 5
  • 32
  • 52
  • 1
    Perhaps add a note about the unfortunate [lack of support](http://www.quirksmode.org/css/contents.html#t38)? – benesch Jan 04 '12 at 01:35
  • 2
    I don't think this is exactly what Brodie is asking - this will style the _children_ after a given amount, but can't select the ancestor/containing element based on the number of its children. – Ben Hull Jan 04 '12 at 01:36
  • This is actually some pretty good information though, thanks alan but bee is right, I was trying to say "if an element has this many children us this style" If I'm not mistaken your method would style the 8th child on, but the first 7 would be lonely and naked. – Brodie Jan 04 '12 at 01:43
  • @primatology - The only browser that doesn't support nth-child is IE<9. All others have been supporting it two versions back or more. – Rob Jan 04 '12 at 01:53
  • -1 This will not make **div child** red, this will make the div red based on its number within its **siblings**! Is not related to div's child in any way! – Tomas Jan 18 '14 at 15:09
0

No, there is nothing like this in CSS. You can, however, use JavaScript to calculate the number of children and apply styles.

Niet the Dark Absol
  • 301,028
  • 70
  • 427
  • 540