This may seem convoluted, but there is a need.
I have a complex css page - 800+ lines to manage multiple menu boxes with each with many different properties ( BG, images, colors, etc)and some common properties (fonts, etc...).
eg:
menu_a_cat{font-weight;bold; font-size:11pt color:#000}
menu_a_subcat{font-weight;normal; font-size:11pt etc..}
menu_a a:hover (color:#e4892e}
thru...
menu_z_cat{font-weight;bold; font-size:11pt color:#FFF}
menu_z_subcat{font-weight;normal; font-size:11pt}
menu_z a:hover (color:#3f3e3eF}
all menus are grouped for easy coding and have many properties.
how can I set the common menu properties to a global property -
eg: global_subcat{font-weight;normal; font-size:11pt}
without using the traditional...
menu_a_subcat, menu_b_subcat, menu_c_subcat, menu_d_subcat {font-weight;normal; font-size:11pt}
I want to keep the properties in their indexed group so I need something like ...
menu_a_subcat{style="global_subcat"}
possible? - x-browser issues?
I have a complex css page - 800+ lines to manage multiple menu boxes with each with many different properties ( BG, images, colors, etc)and some common properties (fonts, etc...).
eg:
menu_a_cat{font-weight;bold; font-size:11pt color:#000}
menu_a_subcat{font-weight;normal; font-size:11pt etc..}
menu_a a:hover (color:#e4892e}
thru...
menu_z_cat{font-weight;bold; font-size:11pt color:#FFF}
menu_z_subcat{font-weight;normal; font-size:11pt}
menu_z a:hover (color:#3f3e3eF}
all menus are grouped for easy coding and have many properties.
how can I set the common menu properties to a global property -
eg: global_subcat{font-weight;normal; font-size:11pt}
without using the traditional...
menu_a_subcat, menu_b_subcat, menu_c_subcat, menu_d_subcat {font-weight;normal; font-size:11pt}
I want to keep the properties in their indexed group so I need something like ...
menu_a_subcat{style="global_subcat"}
possible? - x-browser issues?