为什么我的CSS选择器被转换为大写IE(Why my css selector gets conve

2019-10-16 14:57发布

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

Answer 1:

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

它没有任何区别。



文章来源: Why my css selector gets converted to upper case in IE