Ich habe hier ein komplettes "fehlerhaftes" Beispiel:
<html>
<head>
<style type="text/css">
<!--
div.rot#EinDiv {
background-color:#f00;
}
div.gruen#EinDiv {
background-color:#0f0;
}
div.blau#EinDiv {
background-color:#00f;
}
//-->
</style>
</head>
<body>
<div id="EinDiv" class="gruen">
test
</div>
</body>
</html>