我有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;
}
答案 0 :(得分:4)
这是IE解析CSS选择器的方式。
它没有任何区别。