I want to target all the elements in the first row of a flexbox layout. A first row selector would be really useful but I can't find one. Just wondering if there is such a selector.
Asked
Active
Viewed 21 times
0
-
1No there is not, but if amount of children is known, nth-child is an hint :) – G-Cyrillus Jul 24 '17 at 23:14
-
1There is no way to select an entire row in flexbox. If you know the number of flex items in a row, you can target them as a group. – Michael Benjamin Jul 24 '17 at 23:15
-
Thanks for the info. Cheers – Clinton Green Jul 24 '17 at 23:16