Method #1: Change class/ID
- Use a class or ID on
<body>
- Create rules that override the default color
#header {...}
.cs1 #header {...}
.cs2 #header {...}
- Add a class to the body
<body class="cs1">
<body>
#header {...}
.cs1 #header {...}
.cs2 #header {...}
<body class="cs1">
77