Does hyperlinks have to be the same colour on one page?
Thanks.

Moderators: macek, egami, gesf


<html>
<head>
<title>Style</title>
<style type="text/css">
/* Tags using classes 1 and 2 */
.1 a, a:visited, a:link, a:hover, a:active {
color: #1B73A3; text-decoration: none;
}
.1 a:hover {
color: #ff8500; text-decoration: none;
}
.2 a, a:visited, a:link, a:hover, a:active {
color: #000000; text-decoration: none;
}
.2 a:hover {
color: #aaaaaa; text-decoration: none;
}
/* Tag with id = 3 */
#3 a, a:visited, a:link, a:hover, a:active {
color: #000000; text-decoration: none;
}
#3 a:hover {
color: #aaaaaa; text-decoration: underline;
}
</style>
</head>
<body>
<div class="1">First style</div>
<div class="2">Second style</div>
<table>
<tr>
<td class="1">First style</td>
<td id="3">Third style</td>
</tr>
</table>
</body>

Users browsing this forum: No registered users and 2 guests