<div class="text1">
Text 1
<div class="text2">Text 2</div>
</div>
@property --my-color {
syntax: "<color>";
inherits: false;
initial-value: #ff0000;
}
.text1 {
--my-color: #0000ff;
color: var(--my-color);
}
.text2 {
color: var(--my-color);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.