Well i have a big html document. And i want to embend control to this document but css styles of this control overlap by styles of big html document. How can i reset all styles for only div(and all nested divs)?
|
|
With the Yahoo reset http://yuilibrary.com/yui/docs/cssreset/ There is a "contextual" version which only reset elements which are decendent of .yui3-cssreset e.g.
|
|||||||||||
|
|
One solution (maybe not the best) is to use |
|||
|
|
|
You would want to add a CSS rule to your style sheet that applies only to the control you are trying to embed; something like this:
You will probably need more attributes in there to clear out any other styles that may be being applied, this is just an example. Now any control you place inside that main div, you would have to create rules that specifically address those objects. For example:
|
|||
|
|
|
I think i understand what you mean, are they multiple stylesheets? if so put the new one underneath the old one in the HTML eg
or just put the new div code at the bottom of the stylesheet if you only have one. Without an example of what's going on it's hard to work out what the best course of action will be. |
|||
|
|
|
I should say that you should not do the
IF you REALLY need to then you might want to use I hope this helps you a bit. |
|||
|
|
