I have a fairly complex CSS file that a co-worker has written for a single server monitoring page. The monitoring page looks great BUT it calls out element tags and other proprietary tags that conflict with my existing css- im trying to absorb the server monitoring page into a larger pre-existing page without breaking EVERYTHING AND without re-designing an entire CSS. There has to be a way to nest an entire css so that it only looks at a single div or attribute....right?
Ive tried something similar to this:
#server_mon ~ {
{#cssrule1}
{#cssrule2}
}
Where #server_mon is the div that the monitoring table lives in...this doesn't work. I understand the basics of nesting but nesting an entire css...hmmm any thought or approaches to this? THANK YOU- this will save me a ton of work.