に大文字に変換されるのはなぜ私は従う私の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;
}
としてのCSSファイルを持っている私は正しく私の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はちょっとこれをします。 –
あなたはIEの開発ツールについて話しています。 – SLaks
これは何らかの種類の表示でエラーになりますか?それとも、好奇心から尋ねていますか? – David