1

我有如下的css文件

/*mycss.css*/
body {
margin: 0px; padding: 0px; 
}
a:link {
color: rgb(255, 255, 255); font-weight: normal; text-decoration: underline;
}
a:visited {
color: rgb(255, 255, 255); font-weight: normal; text-decoration: underline;
}
a:active {
color: rgb(255, 255, 255); text-decoration: none;
}
a:hover {
color: rgb(255, 255, 255); text-decoration: none;
}

我已经在我的 php 文件中正确链接了它并且工作正常firefox,chrome但是当我在Internet explorer我的 css 中打开它时看起来就像我的所有 css 选择器都转换为大写

 /*mycss.css*/
BODY{
margin: 0px; padding: 0px; 
}
A:link {
color: rgb(255, 255, 255); font-weight: normal; text-decoration: underline;
}
A:visited {
color: rgb(255, 255, 255); font-weight: normal; text-decoration: underline;
}
A:active {
color: rgb(255, 255, 255); text-decoration: none;
}
A:hover {
color: rgb(255, 255, 255); text-decoration: none;
}
4

1 回答 1

4

这是 IE 解析 CSS 选择器的方式。

它没有任何区别。

于 2012-04-23T14:11:46.633 回答