link rel =“stylesheet”在MSIE中不起作用

时间:2012-04-02 04:05:47

标签: css internet-explorer browser cross-browser

以下代码适用于所有浏览器(FF,CHROME,OPERA),不包括MSIE!我尝试了不同的代码:

<link rel="shortcut icon" href="drawable/icon.png">
<link rel="stylesheet" type="text/css" href="http://127.0.0.1:6789/Resource/raw/styles.css">

<style type="text/css">
@import url(http://127.0.0.1:6789/Resource/raw/styles.css);
</style>

但它不起作用!当我将此网页保存在本地磁盘上时(例如C:\ tmp \ webpage.html)并从MSIE启动它可以正常工作!任何人都可以解释我该怎么办?感谢。

1 个答案:

答案 0 :(得分:-3)

尝试一下,也许msie正在寻找媒体属性

<link rel="stylesheet" media="all" type="text/css" href="http://127.0.0.1:6789/Resource/raw/styles.css">

http://www.w3schools.com/css/css_mediatypes.asp