is there a way to cascade non-inherited properties like text color to child elements in a webpage without explicitly telling child elements to inherit from parent node
I am trying to write a small application which restyles a webpage(e.g. google,msn.co.uk). Styles include color, background color by injecting style into the body by doing the following
document.body.style.color='green';
however elements within the body which contained their own style do not inherit the color e.g. a div element with its own style <div id="testing" style="color": blue"> still displays blue.
my current understand is that this is an issue of inheritance and not all properties are automatically inherited form the parent container, and for the style to be inherited, one has to change the color to inherit by doing something like
document.getElementById('testing').style.color='inherit';
in which case it would inherit color from body. however in this case i would have to go through all child elements explicitly telling them to inherit from parent (i could actually have set these child elements to same color as body)
i guess this is an inheritance issue and not a specificity issue