Does anyone know on how to combine multiple stylesheets into one? For example I have
<
Basically, you can keep them like that. As long as your stylesheets don't have elements redefined from one to another, you will have no problems. For example, if you have 2 stylesheets a.css and b.css in your htm file
if in a.css you have
a{
text-decoration:none;
}
and in b.css
a{
text-decoration:underline;
}
then the second linked stylesheet will define the text-decoration attribute of a