I am facing an issue with my CSS file. Here is how it looks:
/*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;
}
Everything works fine in Firefox
and Chrome
, but when I open the page in Internet Explorer
, all my CSS selectors are converted to uppercase like this:
/*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;
}