我的css文件遵循爲什麼我的CSS選擇器被轉換爲大寫IE
/*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;
}
這是否導致與CSS的錯誤? IE只是有點這樣做。 – 2012-04-23 14:11:47
你在談論IE開發工具。 – SLaks 2012-04-23 14:11:58
這會導致某種顯示中的錯誤嗎?或者你只是出於好奇而問? – David 2012-04-23 14:12:01