Answers for "how to select all child of specific elements in css"

5

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
4

css affect all child elements

div.class, div.class > * {
    // CSS Property
}
Posted by: Guest on April-16-2020

Code answers related to "how to select all child of specific elements in css"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language