I am trying to hide the first 3 elements having the class .row inside the block .container.
.row
.container
What I\'m doing is hiding all the .row
I found this answer by Googling "css show first n elements", but the question now seems to be the opposite (hiding first n elements)
:nth-child(n+4)
^ this will work if you're looking for what I was looking for