2 "Style" på en side?
Hvad er der galt med denne kode?"Style" virker ikke!
<html>
<head>
<STYLE>
Body {
a:link { color: 000000; text-decoration: none; }
a:active { color: 000000; text-decoration: none; }
a:visited { color: 000000; text-decoration: none; }
a:hover { color: cccccc; text-decoration: none; }
}
.menu1 {
a:link { color: ffffff; text-decoration: none; }
a:active { color: ffffff; text-decoration: none; }
a:visited { color: ffffff; text-decoration: none; }
a:hover { color: cccccc; text-decoration: none; }
}
</style>
</head>
<body bgcolor="#dddddd">
<tr>
<td> <a href="http://www.dr.dk">Sort</a> </td>
</tr>
<tr>
<td class="menu1"><a href="http://www.dr.dk">Hvid</a> </td>
</tr>
</body>
</html>
