The CSS universal selector (*) matches elements of any type.
/* Selects all elements */
* {
color: green;
}
/* Selects all elements in an "intro" section (with "intro" ID) */
#intro * {
color: red;
}
The CSS universal selector (*) matches elements of any type.
/* Selects all elements */
* {
color: green;
}
/* Selects all elements in an "intro" section (with "intro" ID) */
#intro * {
color: red;
}