It's possible to load multiple stylesheets:
<head>
<link rel="stylesheet" type="text/css" href="general.css">
<link rel="stylesheet" type="text/css" href="specific.css">
</head>
Note that later files and declarations will override earlier ones. So if general.css
contains:
body {
background-color: red;
}
and specific.css
contains:
body {
background-color: blue;
}
if both are used, the background of the document will be blue.