为什么我的css选择器在IE中转换为大写

时间:2012-04-23 14:10:01

标签: css internet-explorer css-selectors

我有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;
}

1 个答案:

答案 0 :(得分:4)

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

它没有任何区别。