我使用此代码只为IE浏览器加载ie.css。但它不起作用,我很困惑! 谁能帮帮我?
<html>
<head>
<title>Demo for IE</title>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->
</head>
<body>
<h1>Testing for IE</h1>
</body>
</html>
答案 0 :(得分:0)
IE10和IE11不再支持条件注释。所以很可能,您正在使用这些版本中的任何一个
供您参考:
答案 1 :(得分:0)
<!DOCTYPE html>
<html lang="en">
<head>
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->
</head>
<body>
</body>
</html>
这将在IE9下面的IE上应用ie.css。您可以更改IE版本。