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