ICh habe mich darin verannt Java S. aus meiner HP zu verpannen, jetzt möchte eine htm Seite die 16 verschiedene mouse Over Buttons hat ( mit wechselbildern button.gif und button.on.gif ) umstellen auf CSS mouse over.
Ich habe es mit class Zuweisung versucht aber nicht hinbekommen.
Vielleicht hat jemand schonmal ein ähnliches Prob gehabt.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>Rollover mit CSS - Beispiel 5</title>
<style>
a { display:block;
background-image:url(button.gif);
width:120px; height:30px }
a:hover { background-image:url(button_on.gif); }
</style>
</head>
<body>
<h1>Bild-Button mit CSS</h1>
<p><a href="#"> </a></p>
</body>
</html>