Frank: Conditional Comment funktioniert nicht für IE5

Beitrag lesen

Hallo,
habe folgenden Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
    <title>###pageTitle###</title>
    <meta http-equiv="content-type" content="text/html;iso-8859-15" />
    <style type="text/css">
    h1{
        color : blue;
    }
    </style>
 <!--[if lt IE 6]>
    <style type="text/css">
    h1{
        color : red;
    }
    </style>
    <![endif]-->
</head>

<body>
<h1>###mainHeading###</h1>
</body>

</html>

Nun ist aber das Resultat, dass die Überschrift sowohl in IE 6 als auch IE 5 blau ist... mit "if IE" funktioniert es für beide, brauche aber ja nur IE 5.

Vielleicht liegt es auch an meiner Standaloneversion des IE 5.0 und IE 5.5 aus dem browsers.evolt.org-Archiv, könnte das sein? Komisch aber dann, dass ich die Box-Model-Box des IE 5 sehen kann...

Hat jemand eine Idee?

Vielen Dank,
Frank