Hi,
Please look at following html code snippet for sample. Here I written a CSS style colorblock and applied to a div. My intention is to apply this color to all children of this div. But it is fine for all mathml elements inside the div except for <menclose/> tag. Here the strike color is taking black by default. We can change this color by using mathcolor attribute. But here I want to inherit strike color from parent <div/> tag. Please give me an idea on how to achieve this? Please check the attachment for sample html file.
<style>
.colorblock {
color: red;
}
</style>
<div class="colorblock">
Math Color Test:
<br />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<menclose notation="updiagonalstrike">
<mi>x</mi>
<mo>+</mo>
<mi>y</mi>
</menclose>
</math>
</div>