child css
p:nth-child(2)
{
background: red;
}
css affect all child elements
div.class, div.class > * {
// CSS Property
}
all child css
//Will select all li under ul
//<ul>
<li>
<ul>
<li></li>
<li></li>
</ul>
</li>
</ul>
Affected li = 4
ul li { margin: 0 0 5px 0; }
//Will only select the childer li of the ul
//<ul>
<li>
<ul>
<li></li>
<li></li>
</ul>
</li>
</ul>
Affected li = 1
ul > li { margin: 0 0 5px 0; }
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us