2010-05-17, 06:21 PM
2010-05-17, 09:30 PM
You could separate the CSS, it's not too hard.
Then just modify the one you want and everything's happy.
You can also have multiple definitions of classes:
The browser will combine the definitions, preferring things from the later definitions if there are conflicts.
class1, class2 {
stuff;
}
becomes
class1 {
stuff;
}
class2 {
stuff;
}
Then just modify the one you want and everything's happy.
You can also have multiple definitions of classes:
class1, class2 {
stuff;
}
class1 {
class1-stuff;
}
class2 {
class2-stuff;
}
The browser will combine the definitions, preferring things from the later definitions if there are conflicts.
2010-05-18, 12:37 PM
Thanks for the help.