child div css code example
Example 1: child css
p:nth-child(2)
{
background: red;
}
Example 2: css immediate child
.parent>.immediate-child {
color: red;
}
p:nth-child(2)
{
background: red;
}
.parent>.immediate-child {
color: red;
}