IE<9 不理解data:
URI,因此我输出了两种不同的样式表:一种带有指向 IE 8 及以下版本的图像的正常链接,另一种带有 base64 编码的内联图像,用于其他浏览器。
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="/public/themes/url.style.css">
<![endif]-->
<!--[if gt IE 8]>-->
<link rel="stylesheet" type="text/css" href="/public/themes/b64.style.css">
<!--<![endif]-->
问题:在 IE9 中,我在-->
页面上看到了杂散输出。因为它在里面,<head>
所以它出现在页面的最顶部。我应该如何摆脱它?