IE10不会起作用,IE9,8,7,6,5都可以

<html>
<head>
<title>IE打开就是蓝色背景,白色的字体</title>
<!--[if IE]>
<style>
body { background-color: blue; color: #fff; }
</style>
<![endif]-->
</head>
<body>
IE打开就是蓝色背景,白色的字体
</body>
</html>
<!--[if IE ]>
可以把样式写在这中间
<![endif]-->
只有IE6版本可见
<!--[if lte IE ]>
<![endif]-->
IE6及其以下版本可见
<!--[if gte IE ]>
<![endif]-->
IE6及其以上版本可见
<!--[if IE ]>
<![endif]-->
只有IE7版本可见
<!--[if lte IE ]>
<![endif]-->
IE7及其以下版本可见
<!--[if gte IE ]>
<![endif]-->
IE7及其以上的版本可见
<!--[if IE ]>
<![endif]-->
只有IE8版本可见
<!--[if lte IE ]>
<![endif]-->
IE8及其以下的版本可见
<!--[if gte IE ]>
<![endif]-->
IE8及其以上的版本可见
<![if !IE]>
<![endif]>
除了IE以外的版本
05-07 15:29