Вопрос: это так задумано, это известный баг, или это мне померещилось?
Спасибо.
Пример:
Файл 1. Cсылка белая, как и надо:
Code: Select all
<html><head>
<style>
.c_orange {background-color:#3A3A60;color:white;font:bold 11px arial, sans-serif}
.c_orange A:link{color: orange; text-decoration: none}
.c_orange A:visited{color: orange; text-decoration: none}
.c_white {background-color:#3A3A60;color:white;font:bold 11px arial, sans-serif}
.c_white A:link{color: white; text-decoration: none}
.c_white A:visited{color: white; text-decoration: none}
</style>
</head>
<body >
<table><tr><td class="c_orange">
<span class="c_white"><a href="x.cgi?dir=d">LINK</a></span>
</td></tr></table>
</body>
</html>
Файл 2. Ссылка оранжевая, как совсем не надо :
Code: Select all
<html><head>
<style>
.c_white {background-color:black;color:white;font:bold 11px arial, sans-serif}
.c_white A:link{color: white; text-decoration: none}
.c_white A:visited{color: white; text-decoration: none}
.c_orange {background-color:black;color:white;font:bold 11px arial, sans-serif}
.c_orange A:link{color: orange; text-decoration: none}
.c_orange A:visited{color: orange; text-decoration: none}
</style>
</head>
<body >
<table><tr><td class="c_orange">
<span class="c_white"><a href="x.cgi?dir=d">LINK</a></span>
</td></tr></table>
</body>
</html>