Zitat:
Zwischen "IE" und "6" habe ich bei der Verwendung eines Operators auch ein Leerzeichen gesetzt gehabt (wie es bei css4you stand), aber dann erkennt IE die Anweisung nicht mehr.
|

also ich habe es eben getestet......
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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>xxxx</title>
<!--[if lt IE6]>
FALSCH [if lt IE6]</p><![endif]-->
<!--[if lt IE 6]>
RICHTIG [if lt IE 6]</p><![endif]-->
<!--[if gte IE 6]>
RICHTIG [if gte IE 6]</p><![endif]-->
<style type="text/css">
/*<![CDATA[*/
html,body {
margin: 0;
padding: 0;
background-color: #FFDD33;
color: #000000;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 100.01%;
}
p {
font-size: 0.8em;
}
h1 {
font-size: 1.3em;
}
/*]]>*/
</style>
</head><body>
<h1>Internet Explorer 6 :: Conditional Comments :: TEST</h1>
<!--[if lt IE6]>
FALSCH [if lt IE6]</p><![endif]-->
<!--[if lt IE 6]>
RICHTIG [if lt IE 6]</p><![endif]-->
<!--[if gte IE 6]>
RICHTIG [if gte IE 6]</p><![endif]-->
</body></html>