Closed dbeja closed 5 years ago
Hi,
I tried to use :nth-child but it seems to not be working.
The rule I'm using is this one: .product > .row > .col-12 > .row:nth-child(2)
.product > .row > .col-12 > .row:nth-child(2)
Thanks
The :nth-child is in my ToDo list. At the moment you can use :eq(2) for your use-case:
:nth-child
:eq(2)
.product > .row > .col-12 > .row:eq(2)
Perfect, thanks, :eq works fine for what I need.
Hi,
I tried to use :nth-child but it seems to not be working.
The rule I'm using is this one:
.product > .row > .col-12 > .row:nth-child(2)
Thanks