I have an overlaying div (much like addthis.com) that I want to protect from inheriting styles. I have looked at reset-css files such as Blueprint but this tends to screw up the parent styles as well.
For instance:
User has div { border-right:1px solid red; }
This is appended to all divs on the page, including my overlay. Of course I can write #mydiv { border-right:0; }
but doing this for all css-properties is massive. There could be an easier way?
PS. I am not in an iframe, and the parent page is dynamic, could be any URL really DS.