Автор: Vania
Дата сообщения: 10.03.2010 18:46
Вот так можно сделать, но не будет работать в IE6:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.link {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.link a {
font: bold 16px Arial, Helvetica, sans-serif;
color: #F00;
text-decoration: none;
}
.link a span {
font: bold 16px Arial, Helvetica, sans-serif;
color: #0F0;
}
.link a span + span {
font: bold 16px Arial, Helvetica, sans-serif;
color: #F0F;
}
.link a:hover, .link a:hover span, .link a:hover span + span {
font: bold 16px Arial, Helvetica, sans-serif;
color: #00F;
text-decoration: underline;
}
-->
</style>
</head>
<body>
<div class="link"><a href="#">Это <span>разноцветная</span> <span>ссылка</span></a></div>
</body>
</html>
Или можно вот так, с дополнительным классом, будет работать и IE6
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.link {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.link a {
font: bold 16px Arial, Helvetica, sans-serif;
color: #F00;
text-decoration: none;
}
.link a span {
font: bold 16px Arial, Helvetica, sans-serif;
color: #0F0;
}
.link a .color {
font: bold 16px Arial, Helvetica, sans-serif;
color: #F0F;
}
.link a:hover, .link a:hover span, .link a:hover .color {
font: bold 16px Arial, Helvetica, sans-serif;
color: #00F;
text-decoration: underline;
}
-->
</style>
</head>
<body>
<div class="link"><a href="#">Это <span>разноцветная</span> <span class="color">ссылка</span></a></div>
</body>
</html>