11 lines
84 B
CSS
11 lines
84 B
CSS
* {
|
|
color: inherit;
|
|
}
|
|
|
|
button {
|
|
color: red;
|
|
}
|
|
|
|
.testinherit * {
|
|
color: red;
|
|
}
|