Add css to container columns

Hi there !
I’m looking to add a css class to a three column container to show each column as a card with multiple elements on it.

div:nth-child(3) is working, but only on third column. div:nth-child(1) & div:nth-child(2) are applying in all elements inside the columns, not for the entire column…

Anyone has an idea on that ?

Thanks !

Try using this code:

.containerCard .threeColumns > div {
background-color: green;
border-radius: 10px;
padding: 10px;
}

2 Likes

Insane thanks man !

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.