Answers for "apply to all childeren fo a class in css"

CSS
1

css select all immediate children

.parent > *
Posted by: Guest on March-28-2021
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 "apply to all childeren fo a class in css"

Browse Popular Code Answers by Language