[css]IE版本判定
<!doctype html>
<!--[if lt IE 8[>
小于IE8的版本可见
<![endif]>
<!--[if lte IE 8]>
小于等于IE8版本可见
<![endif]-->
<!--[if IE 8]>
只有IE8版本可见
<![endif]-->
<!--[if gt IE 8]>
大于IE8的版本可见
<![endif]-->
<!--[if gte IE 8]>
大于等于IE8版本可见
<![endif]-->
<![if !IE]>
除了IE以外的版本
<![endif]>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<!-–[if IE 7]>
<!–- 如果IE浏览器版是7,调用ie7.css样式表- –>
<link rel="stylesheet" type="text/css" href="ie7.css" />
<![endif]–->
<!–-[if lte IE 6]>
<!–- 如果IE浏览器版本小于等于6,调用ie.css样式表 -–>
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]–>
</head>
<body>
</body>
</html>