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