これが私のコードです。ie を使用する場合、「ブラウザを変更してください!」と表示し、ie 以外のブラウザのみが他のコードを表示できるようにします。しかし、ie10 では動作しません (つまり、10 は h1 を表示せず、他のコードを表示します) 私のコードの何が問題なのですか?
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Sisu|Swap</title>
<link type="text/css" rel="stylesheet" href="1.css">
</head>
<body>
<!--[If IE]>
<h1 style="color: white">please change your browser!</h1>
<![endif]-->
<!--[if !IE]>-->
<header>
<img src="imgs/header.jpg" />
</header>
<footer>
</footer>
</body>
</html>
<!--<![endif]-->