Let's say I have two divs like this:
<div name="parent" style="color:blue;padding:5px">
<div name="child" style="background:red">
Text that ignores color:blue and padding:5px, but still obeys background:red.
</div>
</div>
I want the text in the div named child to ignore all css that is not defined by child. I know I can do this by defining every css option available to default, but that would be very bulky for my current project. I don't want to use iframes either. How can I do this? Thanks.