I have a DIV on a site with a series of nested DIVs and hyperlinks.
I want to control the CSS for all of the nested DIVs and hyperlinks within that DIV only, without it affecting the rest of the site.
An example of the CSS equivalent to what I'm talking about
:
Code:
#unique_div_id a {
font-size: 11px;
}
The difference is that there are certain CSS properties I want to generate dynamically, hence the reason I can't use CSS straight.
So what would the syntax be to access all of the hyperlinks within unique_div_id, above?
Thanks.[/code]