Answers for "how to target child elements in css"

CSS
9

child css

p:nth-child(2)
 	{     
 		background: red;
 	}
Posted by: Guest on May-14-2020
1

how to target all child elements css

.wrapper * {
    color: blue;
    margin: 0 100px; /* Only for demo */
}
.myTestClass > * {
    color:red;
    margin: 0 20px;
}
Posted by: Guest on February-25-2021

Code answers related to "how to target child elements in css"

Browse Popular Code Answers by Language